From ca52393ba37b33ca549e6a17b3485f1aa396d512 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Thu, 24 Oct 2024 17:12:56 -0700 Subject: [PATCH 001/291] Create mypy_kyu8.yml --- .github/workflows/mypy_kyu8.yml | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/mypy_kyu8.yml diff --git a/.github/workflows/mypy_kyu8.yml b/.github/workflows/mypy_kyu8.yml new file mode 100644 index 00000000000..3fe6834c980 --- /dev/null +++ b/.github/workflows/mypy_kyu8.yml @@ -0,0 +1,38 @@ +name: MyPy for kyu8 + +on: + push: + branches: + - 'kyu8' + +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 mypy + pip install types-requests + - name: Check to make sure that the module is in your Python path + run: | + echo $PYTHONPATH + - name: Python Data Type Checking with MyPy + # Python Type Checking (Guide) + # https://realpython.com/python-type-checking/ + run: | + mypy kyu_8 --ignore-missing-imports --check-untyped-defs From 521b40ef2243a7eca780029217e583f8f3eb2e85 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 19:30:22 -0700 Subject: [PATCH 002/291] Update test_first_non_consecutive.py kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:92: error: Name "lst" already defined on line 79 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:103: error: Name "lst" already defined on line 79 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:111: error: Name "expected" already defined on line 87 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:139: error: Name "lst" already defined on line 133 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:140: error: Name "expected" already defined on line 134 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:145: error: Name "lst" already defined on line 133 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:146: error: Name "expected" already defined on line 134 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:151: error: Name "lst" already defined on line 133 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:152: error: Name "expected" already defined on line 134 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:157: error: Name "lst" already defined on line 133 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:159: error: Name "expected" already defined on line 134 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:164: error: Name "lst" already defined on line 133 [no-redef] kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:167: error: Name "expected" already defined on line 134 [no-redef] --- .../test_first_non_consecutive.py | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py b/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py index a2d5135102a..2f4c0907e35 100644 --- a/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py +++ b/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py @@ -48,8 +48,8 @@ def test_first_non_consecutive_none(self): "

") # pylint: enable=R0801 with allure.step("Pass a list with no non consecutive numbers"): - lst = [1, 2, 3, 4, 5, 6, 7, 8] - expected = None + lst: list = [1, 2, 3, 4, 5, 6, 7, 8] + expected: None = None print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) @@ -75,7 +75,7 @@ def test_first_non_consecutive_large_list(self): '

Test Description:

' "

") # pylint: enable=R0801 - with allure.step("Pass a large list with no non consecutive numbers"): + with (allure.step("Pass a large list with no non consecutive numbers")): lst: list = [36, 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, @@ -84,30 +84,30 @@ def test_first_non_consecutive_large_list(self): 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] - expected = None + expected: None = None print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) with allure.step("Pass a large list with no non consecutive numbers"): - lst: list = [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] + lst = [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] expected = None print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) with allure.step("Pass a large list with non consecutive number"): - lst: list = [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, - 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] + lst = [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, + 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] expected: int = 101 print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) @@ -136,35 +136,35 @@ def test_first_non_consecutive_positive(self): self.assertEqual(first_non_consecutive(lst), expected) with allure.step("Pass a list with positive non consecutive number"): - lst: list = [4, 6, 7, 8, 9, 11] - expected: int = 6 + lst = [4, 6, 7, 8, 9, 11] + expected = 6 print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) with allure.step("Pass a list with positive non consecutive number"): - lst: list = [4, 5, 6, 7, 8, 9, 11] - expected: int = 11 + lst = [4, 5, 6, 7, 8, 9, 11] + expected = 11 print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) with allure.step("Pass a list with positive non consecutive number"): - lst: list = [-3, -2, 0, 1] - expected: int = 0 + lst = [-3, -2, 0, 1] + expected = 0 print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) with allure.step("Pass a list with positive non consecutive number"): - lst: list = [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 25, 26, 27] - expected: int = 25 + lst = [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 25, 26, 27] + expected = 25 print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) with allure.step("Pass a list with positive non consecutive number"): - lst: list = [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, - 40, 41, 42, 43, 44, 45] - expected: int = 39 + lst = [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, + 40, 41, 42, 43, 44, 45] + expected = 39 print_log(list=lst, expected=expected) self.assertEqual(first_non_consecutive(lst), expected) From 5624d4d72e1c2bd818561dc5700527a9ea020802 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 19:32:34 -0700 Subject: [PATCH 003/291] Update test_first_non_consecutive.py kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py:78:0: C0325: Unnecessary parens after 'with' keyword (superfluous-parens) --- .../test_first_non_consecutive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py b/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py index 2f4c0907e35..e8b6008f360 100644 --- a/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py +++ b/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py @@ -75,7 +75,7 @@ def test_first_non_consecutive_large_list(self): '

Test Description:

' "

") # pylint: enable=R0801 - with (allure.step("Pass a large list with no non consecutive numbers")): + with allure.step("Pass a large list with no non consecutive numbers"): lst: list = [36, 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, From 0c2a33cac21e062a5c55099da620409ed7b92710 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 19:36:34 -0700 Subject: [PATCH 004/291] Update test_is_your_period_late.py kyu_8/is_your_period_late/test_is_your_period_late.py:62: error: Name "last" already defined on line 50 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:63: error: Name "today" already defined on line 51 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:64: error: Name "cycle_length" already defined on line 52 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:74: error: Name "last" already defined on line 50 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:75: error: Name "today" already defined on line 51 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:76: error: Name "cycle_length" already defined on line 52 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:86: error: Name "last" already defined on line 50 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:87: error: Name "today" already defined on line 51 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:88: error: Name "cycle_length" already defined on line 52 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:125: error: Name "last" already defined on line 113 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:126: error: Name "today" already defined on line 114 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:127: error: Name "cycle_length" already defined on line 115 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:137: error: Name "last" already defined on line 113 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:138: error: Name "today" already defined on line 114 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:139: error: Name "cycle_length" already defined on line 115 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:149: error: Name "last" already defined on line 113 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:150: error: Name "today" already defined on line 114 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:151: error: Name "cycle_length" already defined on line 115 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:161: error: Name "last" already defined on line 113 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:162: error: Name "today" already defined on line 114 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:163: error: Name "cycle_length" already defined on line 115 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:173: error: Name "last" already defined on line 113 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:174: error: Name "today" already defined on line 114 [no-redef] kyu_8/is_your_period_late/test_is_your_period_late.py:175: error: Name "cycle_length" already defined on line 115 [no-redef] --- .../test_is_your_period_late.py | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/kyu_8/is_your_period_late/test_is_your_period_late.py b/kyu_8/is_your_period_late/test_is_your_period_late.py index 83ef8d2a29e..eb75b23032f 100644 --- a/kyu_8/is_your_period_late/test_is_your_period_late.py +++ b/kyu_8/is_your_period_late/test_is_your_period_late.py @@ -59,9 +59,9 @@ def test_period_is_late_positive(self): self.assertTrue(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 7, 12) - today: date = date(2016, 8, 10) - cycle_length: int = 28 + last = date(2016, 7, 12) + today = date(2016, 8, 10) + cycle_length = 28 print_log(last=last, today=today, @@ -71,9 +71,9 @@ def test_period_is_late_positive(self): self.assertTrue(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 7, 1) - today: date = date(2016, 8, 1) - cycle_length: int = 30 + last = date(2016, 7, 1) + today = date(2016, 8, 1) + cycle_length = 30 print_log(last=last, today=today, @@ -83,9 +83,9 @@ def test_period_is_late_positive(self): self.assertTrue(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 1, 1) - today: date = date(2016, 2, 1) - cycle_length: int = 30 + last = date(2016, 1, 1) + today = date(2016, 2, 1) + cycle_length = 30 print_log(last=last, today=today, @@ -122,9 +122,9 @@ def test_period_is_late_negative(self): self.assertFalse(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 6, 13) - today: date = date(2016, 7, 16) - cycle_length: int = 35 + last = date(2016, 6, 13) + today = date(2016, 7, 16) + cycle_length = 35 print_log(last=last, today=today, @@ -134,9 +134,9 @@ def test_period_is_late_negative(self): self.assertFalse(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 6, 13) - today: date = date(2016, 6, 29) - cycle_length: int = 28 + last = date(2016, 6, 13) + today = date(2016, 6, 29) + cycle_length = 28 print_log(last=last, today=today, @@ -146,9 +146,9 @@ def test_period_is_late_negative(self): self.assertFalse(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 7, 12) - today: date = date(2016, 8, 9) - cycle_length: int = 28 + last = date(2016, 7, 12) + today = date(2016, 8, 9) + cycle_length = 28 print_log(last=last, today=today, @@ -158,9 +158,9 @@ def test_period_is_late_negative(self): self.assertFalse(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 6, 1) - today: date = date(2016, 6, 30) - cycle_length: int = 30 + last = date(2016, 6, 1) + today = date(2016, 6, 30) + cycle_length = 30 print_log(last=last, today=today, @@ -170,9 +170,9 @@ def test_period_is_late_negative(self): self.assertFalse(period_is_late(last, today, cycle_length)) with allure.step("Pass last, today and period length"): - last: date = date(2016, 1, 1) - today: date = date(2016, 1, 31) - cycle_length: int = 30 + last = date(2016, 1, 1) + today = date(2016, 1, 31) + cycle_length = 30 print_log(last=last, today=today, From 8fd27054e9df830c727f0c8524eaf7e4ea45352d Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 19:49:02 -0700 Subject: [PATCH 005/291] Update test_logical_calculator.py kyu_8/logical_calculator/test_logical_calculator.py:65: error: Name "lst" already defined on line 58 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:66: error: Name "operator" already defined on line 59 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:67: error: Name "expected" already defined on line 60 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:72: error: Name "lst" already defined on line 58 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:73: error: Name "operator" already defined on line 59 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:74: error: Name "expected" already defined on line 60 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:79: error: Name "lst" already defined on line 58 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:80: error: Name "operator" already defined on line 59 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:81: error: Name "expected" already defined on line 60 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:86: error: Name "lst" already defined on line 58 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:93: error: Name "operator" already defined on line 59 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:94: error: Name "expected" already defined on line 60 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:130: error: Name "lst" already defined on line 123 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:131: error: Name "operator" already defined on line 124 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:132: error: Name "expected" already defined on line 125 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:137: error: Name "lst" already defined on line 123 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:138: error: Name "operator" already defined on line 124 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:139: error: Name "expected" already defined on line 125 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:144: error: Name "lst" already defined on line 123 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:151: error: Name "operator" already defined on line 124 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:152: error: Name "expected" already defined on line 125 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:186: error: Name "lst" already defined on line 179 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:187: error: Name "operator" already defined on line 180 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:188: error: Name "expected" already defined on line 181 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:193: error: Name "lst" already defined on line 179 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:195: error: Name "operator" already defined on line 180 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:196: error: Name "expected" already defined on line 181 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:201: error: Name "lst" already defined on line 179 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:209: error: Name "operator" already defined on line 180 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:210: error: Name "expected" already defined on line 181 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:215: error: Name "lst" already defined on line 179 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:222: error: Name "operator" already defined on line 180 [no-redef] kyu_8/logical_calculator/test_logical_calculator.py:223: error: Name "expected" already defined on line 181 [no-redef] --- .../test_logical_calculator.py | 118 +++++++++--------- 1 file changed, 59 insertions(+), 59 deletions(-) diff --git a/kyu_8/logical_calculator/test_logical_calculator.py b/kyu_8/logical_calculator/test_logical_calculator.py index 95a37215882..7f4e11cc220 100644 --- a/kyu_8/logical_calculator/test_logical_calculator.py +++ b/kyu_8/logical_calculator/test_logical_calculator.py @@ -62,36 +62,36 @@ def test_logical_calc_and(self): self.assertEqual(logical_calc(lst, operator), expected) with allure.step("Pass an array with 3 members (negative)"): - lst: list = [True, True, False] - operator: str = 'AND' - expected: bool = False + lst = [True, True, False] + operator = 'AND' + expected = False print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) with allure.step("Pass an array with 3 members (negative)"): - lst: list = [False, False, False] - operator: str = 'AND' - expected: bool = False + lst = [False, False, False] + operator = 'AND' + expected = False print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) with allure.step("Pass an array with 3 members (positive)"): - lst: list = [True, True, True] - operator: str = 'AND' - expected: bool = True + lst = [True, True, True] + operator = 'AND' + expected = True print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) with allure.step("Pass large array (negative)"): - lst: list = [False, False, False, False, True, True, False, - True, True, False, False, True, True, False, - False, False, False, True, True, False, True, - False, False, True, True, True, False, True, - True, False, False, False, False, False, False, - True, True, True, True, False, True, True, False, - True, True, False, False, True, False, False] - operator: str = 'AND' - expected: bool = False + lst = [False, False, False, False, True, True, False, + True, True, False, False, True, True, False, + False, False, False, True, True, False, True, + False, False, True, True, True, False, True, + True, False, False, False, False, False, False, + True, True, True, True, False, True, True, False, + True, True, False, False, True, False, False] + operator = 'AND' + expected = False print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) @@ -127,29 +127,29 @@ def test_logical_calc_or(self): self.assertEqual(logical_calc(lst, operator), expected) with allure.step('Pass an array with 3 members (positive)'): - lst: list = [True, True, False] - operator: str = 'OR' - expected: bool = True + lst = [True, True, False] + operator = 'OR' + expected = True print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) with allure.step('Pass an array with 3 members (negative)'): - lst: list = [False, False, False] - operator: str = 'OR' - expected: bool = False + lst = [False, False, False] + operator = 'OR' + expected = False print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) with allure.step('Pass large array (positive)'): - lst: list = [False, True, True, False, False, False, True, False, - False, False, False, True, True, False, False, False, - True, False, False, True, True, True, True, True, - False, True, True, True, False, True, False, False, - True, True, True, True, True, True, False, True, - False, True, False, True, False, True, False, True, - True, True] - operator: str = 'OR' - expected: bool = True + lst = [False, True, True, False, False, False, True, False, + False, False, False, True, True, False, False, False, + True, False, False, True, True, True, True, True, + False, True, True, True, False, True, False, False, + True, True, True, True, True, True, False, True, + False, True, False, True, False, True, False, True, + True, True] + operator = 'OR' + expected = True print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) @@ -183,43 +183,43 @@ def test_logical_calc_xor(self): self.assertEqual(logical_calc(lst, operator), expected) with allure.step('Pass an array with 3 members (negative)'): - lst: list = [True, True, False] - operator: str = 'XOR' - expected: bool = False + lst = [True, True, False] + operator = 'XOR' + expected = False print_log(list=lst, operator=operator, expected=expected) self.assertEqual(logical_calc(lst, operator), expected) with allure.step('Pass medium size array'): - lst: list = [False, False, True, True, False, - False, False, False, True] - operator: str = 'XOR' - expected: bool = True + lst = [False, False, True, True, False, + False, False, False, True] + operator = 'XOR' + expected = True print_log(list=lst, operator=operator, expected=expected) self.assertEqual(expected, logical_calc(lst, operator)) with allure.step('Pass large size array #1'): - lst: list = [False, False, True, False, False, True, True, - True, False, False, True, False, False, False, - False, True, False, True, False, False, True, - False, False, True, True, True, False, False, - False, False, True, False, False, False, False, - False, True, False, False, False, True, True, - False, True, False, True, False, False, True, - False] - operator: str = 'XOR' - expected: bool = False + lst = [False, False, True, False, False, True, True, + True, False, False, True, False, False, False, + False, True, False, True, False, False, True, + False, False, True, True, True, False, False, + False, False, True, False, False, False, False, + False, True, False, False, False, True, True, + False, True, False, True, False, False, True, + False] + operator = 'XOR' + expected = False print_log(list=lst, operator=operator, expected=expected) self.assertEqual(expected, logical_calc(lst, operator)) with allure.step('Pass large size array #2'): - lst: list = [True, True, False, False, False, True, True, False, - False, True, False, False, True, False, False, True, - True, True, True, True, True, False, False, False, - False, True, True, False, False, True, True, True, - True, False, True, True, False, False, False, True, - False, True, False, True, False, False, True, False, - True, True] - operator: str = 'XOR' - expected: bool = False + lst = [True, True, False, False, False, True, True, False, + False, True, False, False, True, False, False, True, + True, True, True, True, True, False, False, False, + False, True, True, False, False, True, True, True, + True, False, True, True, False, False, False, True, + False, True, False, True, False, False, True, False, + True, True] + operator = 'XOR' + expected = False print_log(list=lst, operator=operator, expected=expected) self.assertEqual(expected, logical_calc(lst, operator)) From f579243e3a3afea4d15ddbee84f0eb9259c0d247 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 19:57:36 -0700 Subject: [PATCH 006/291] Update test_third_angle_of_triangle.py kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:61: error: Name "a" already defined on line 50 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:62: error: Name "b" already defined on line 51 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:63: error: Name "expected" already defined on line 52 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:73: error: Name "a" already defined on line 50 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:74: error: Name "b" already defined on line 51 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:75: error: Name "expected" already defined on line 52 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:84: error: Name "a" already defined on line 50 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:85: error: Name "b" already defined on line 51 [no-redef] kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py:86: error: Name "expected" already defined on line 52 [no-redef] --- .../test_third_angle_of_triangle.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py b/kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py index 368896ae934..c1cceafebcc 100644 --- a/kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py +++ b/kyu_8/third_angle_of_triangle/test_third_angle_of_triangle.py @@ -58,9 +58,9 @@ def test_other_angle(self): self.assertEqual(other_angle(a, b), expected) with allure.step("Enter values of two angles and return the 3rd"): - a: int = 60 - b: int = 60 - expected: int = 60 + a = 60 + b = 60 + expected = 60 print_log(a=a, b=b, @@ -70,9 +70,9 @@ def test_other_angle(self): self.assertEqual(other_angle(60, 60), 60) with allure.step("Enter values of two angles and return the 3rd"): - a: int = 43 - b: int = 78 - expected: int = 59 + a = 43 + b = 78 + expected = 59 print_log(a=a, b=b, @@ -81,9 +81,9 @@ def test_other_angle(self): self.assertEqual(other_angle(a, b), expected) with allure.step("Enter values of two angles and return the 3rd"): - a: int = 10 - b: int = 20 - expected: int = 150 + a = 10 + b = 20 + expected = 150 print_log(a=a, b=b, From 5bd6344a404d6471a3dd7b5a46755f2b162f8224 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:04:26 -0700 Subject: [PATCH 007/291] Update test_remove_string_spaces.py kyu_8/remove_string_spaces/test_remove_string_spaces.py:61: error: Name "string" already defined on line 54 [no-redef] kyu_8/remove_string_spaces/test_remove_string_spaces.py:62: error: Name "expected" already defined on line 55 [no-redef] kyu_8/remove_string_spaces/test_remove_string_spaces.py:68: error: Name "string" already defined on line 54 [no-redef] kyu_8/remove_string_spaces/test_remove_string_spaces.py:69: error: Name "expected" already defined on line 55 [no-redef] kyu_8/remove_string_spaces/test_remove_string_spaces.py:75: error: Name "string" already defined on line 54 [no-redef] kyu_8/remove_string_spaces/test_remove_string_spaces.py:76: error: Name "expected" already defined on line 55 [no-redef] kyu_8/remove_string_spaces/test_remove_string_spaces.py:82: error: Name "string" already defined on line 54 [no-redef] kyu_8/remove_string_spaces/test_remove_string_spaces.py:83: error: Name "expected" already defined on line 55 [no-redef] --- .../test_remove_string_spaces.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/kyu_8/remove_string_spaces/test_remove_string_spaces.py b/kyu_8/remove_string_spaces/test_remove_string_spaces.py index cc68b1e5a45..a2f9bbe5b8b 100644 --- a/kyu_8/remove_string_spaces/test_remove_string_spaces.py +++ b/kyu_8/remove_string_spaces/test_remove_string_spaces.py @@ -58,28 +58,28 @@ def test_something(self): with allure.step("Pass string with spaces " "and verify the result"): - string: str = '8 8 Bi fk8h B 8 BB8B B B B888 c hl8 BhB fd' - expected: str = '88Bifk8hB8BB8BBBB888chl8BhBfd' + string = '8 8 Bi fk8h B 8 BB8B B B B888 c hl8 BhB fd' + expected = '88Bifk8hB8BB8BBBB888chl8BhBfd' print_log(string=string, expected=expected) self.assertEqual(no_space(string), expected) with allure.step("Pass string with spaces " "and verify the result"): - string: str = '8aaaaa dddd r ' - expected: str = '8aaaaaddddr' + string = '8aaaaa dddd r ' + expected = '8aaaaaddddr' print_log(string=string, expected=expected) self.assertEqual(no_space(string), expected) with allure.step("Pass string with spaces " "and verify the result"): - string: str = 'jfBm gk lf8hg 88lbe8 ' - expected: str = 'jfBmgklf8hg88lbe8' + string = 'jfBm gk lf8hg 88lbe8 ' + expected = 'jfBmgklf8hg88lbe8' print_log(string=string, expected=expected) self.assertEqual(no_space(string), expected) with allure.step("Pass string with spaces " "and verify the result"): - string: str = '8j aam' - expected: str = '8jaam' + string = '8j aam' + expected = '8jaam' print_log(string=string, expected=expected) self.assertEqual(no_space(string), expected) From 3c813cdead68a904fc049436e1e6c64daae869be Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:05:29 -0700 Subject: [PATCH 008/291] Update test_remove_char.py kyu_8/remove_first_and_last_character/test_remove_char.py:59: error: Name "string" already defined on line 53 [no-redef] kyu_8/remove_first_and_last_character/test_remove_char.py:60: error: Name "expected" already defined on line 54 [no-redef] kyu_8/remove_first_and_last_character/test_remove_char.py:65: error: Name "string" already defined on line 53 [no-redef] kyu_8/remove_first_and_last_character/test_remove_char.py:66: error: Name "expected" already defined on line 54 [no-redef] kyu_8/remove_first_and_last_character/test_remove_char.py:71: error: Name "string" already defined on line 53 [no-redef] kyu_8/remove_first_and_last_character/test_remove_char.py:72: error: Name "expected" already defined on line 54 [no-redef] kyu_8/remove_first_and_last_character/test_remove_char.py:77: error: Name "string" already defined on line 53 [no-redef] kyu_8/remove_first_and_last_character/test_remove_char.py:78: error: Name "expected" already defined on line 54 [no-redef] --- .../test_remove_char.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/kyu_8/remove_first_and_last_character/test_remove_char.py b/kyu_8/remove_first_and_last_character/test_remove_char.py index c70da344b88..104e80bb659 100644 --- a/kyu_8/remove_first_and_last_character/test_remove_char.py +++ b/kyu_8/remove_first_and_last_character/test_remove_char.py @@ -56,25 +56,25 @@ def test_remove_char(self): self.assertEqual(remove_char(string), expected) with allure.step("Pass 'country' string and verify the output"): - string: str = 'country' - expected: str = 'ountr' + string = 'country' + expected = 'ountr' print_log(string=string, expected=expected) self.assertEqual(remove_char(string), expected) with allure.step("Pass 'person' string and verify the output"): - string: str = 'person' - expected: str = 'erso' + string = 'person' + expected = 'erso' print_log(string=string, expected=expected) self.assertEqual(remove_char(string), expected) with allure.step("Pass 'place' string and verify the output"): - string: str = 'place' - expected: str = 'lac' + string = 'place' + expected = 'lac' print_log(string=string, expected=expected) self.assertEqual(remove_char(string), expected) with allure.step("Pass 'ok' string and verify the output"): - string: str = 'ok' - expected: str = '' + string = 'ok' + expected = '' print_log(string=string, expected=expected) self.assertEqual(remove_char(string), expected) From aa3b455c0b81550aaca68b07efae38b6a2bad5ec Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:07:48 -0700 Subject: [PATCH 009/291] Update test_terminal_game_move_function.py kyu_8/terminal_game_move_function/test_terminal_game_move_function.py:63: error: Name "position" already defined on line 53 [no-redef] kyu_8/terminal_game_move_function/test_terminal_game_move_function.py:64: error: Name "roll" already defined on line 54 [no-redef] kyu_8/terminal_game_move_function/test_terminal_game_move_function.py:65: error: Name "expected" already defined on line 55 [no-redef] kyu_8/terminal_game_move_function/test_terminal_game_move_function.py:73: error: Name "position" already defined on line 53 [no-redef] kyu_8/terminal_game_move_function/test_terminal_game_move_function.py:74: error: Name "roll" already defined on line 54 [no-redef] kyu_8/terminal_game_move_function/test_terminal_game_move_function.py:75: error: Name "expected" already defined on line 55 [no-redef] --- .../test_terminal_game_move_function.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kyu_8/terminal_game_move_function/test_terminal_game_move_function.py b/kyu_8/terminal_game_move_function/test_terminal_game_move_function.py index e5ba0eefc60..f236d17e6bd 100644 --- a/kyu_8/terminal_game_move_function/test_terminal_game_move_function.py +++ b/kyu_8/terminal_game_move_function/test_terminal_game_move_function.py @@ -60,9 +60,9 @@ def test_move(self): self.assertEqual(move(position, roll), expected) with allure.step("Test start position even number"): - position: int = 3 - roll: int = 6 - expected: int = 15 + position = 3 + roll = 6 + expected = 15 print_log(position=position, roll=roll, @@ -70,9 +70,9 @@ def test_move(self): self.assertEqual(move(position, roll), expected) with allure.step("Test start position odd number"): - position: int = 2 - roll: int = 5 - expected: int = 12 + position = 2 + roll = 5 + expected = 12 print_log(position=position, roll=roll, From c9558ca76e8a09ee6d8fd5a0fa95f0863313edaf Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:11:44 -0700 Subject: [PATCH 010/291] Update test_wolf_in_sheep_clothing.py kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py:89: error: Name "lst" already defined on line 78 [no-redef] kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py:93: error: Name "expected" already defined on line 82 [no-redef] kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py:100: error: Name "lst" already defined on line 78 [no-redef] kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py:102: error: Name "expected" already defined on line 82 [no-redef] --- .../test_wolf_in_sheep_clothing.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py b/kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py index 562170a2acf..5fd1ee09df0 100644 --- a/kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py +++ b/kyu_8/wolf_in_sheep_clothing/test_wolf_in_sheep_clothing.py @@ -86,21 +86,21 @@ def test_warn_the_sheep_wolf_in_middle(self): self.assertEqual(warn_the_sheep(lst), expected) # 2 - lst: list = ['sheep', 'wolf', 'sheep', - 'sheep', 'sheep', 'sheep', - 'sheep'] + lst = ['sheep', 'wolf', 'sheep', + 'sheep', 'sheep', 'sheep', + 'sheep'] - expected: str = 'Oi! Sheep number 5! You are ' \ - 'about to be eaten by a wolf!' + expected = 'Oi! Sheep number 5! You are ' \ + 'about to be eaten by a wolf!' print_log(list=lst, expected=expected) self.assertEqual(warn_the_sheep(lst), expected) # 3 - lst: list = ['sheep', 'wolf', 'sheep'] + lst = ['sheep', 'wolf', 'sheep'] - expected: str = 'Oi! Sheep number 1! You are ' \ - 'about to be eaten by a wolf!' + expected = 'Oi! Sheep number 1! You are ' \ + 'about to be eaten by a wolf!' print_log(list=lst, expected=expected) self.assertEqual(warn_the_sheep(lst), expected) From 613c2a52cd9a1addb496e6af3f97464302f2984b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:13:36 -0700 Subject: [PATCH 011/291] Update test_get_size.py kyu_8/surface_area_and_volume_of_box/test_get_size.py:65: error: Name "expected" already defined on line 53 [no-redef] kyu_8/surface_area_and_volume_of_box/test_get_size.py:77: error: Name "expected" already defined on line 53 [no-redef] kyu_8/surface_area_and_volume_of_box/test_get_size.py:89: error: Name "expected" already defined on line 53 [no-redef] kyu_8/surface_area_and_volume_of_box/test_get_size.py:101: error: Name "expected" already defined on line 53 [no-redef] --- kyu_8/surface_area_and_volume_of_box/test_get_size.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kyu_8/surface_area_and_volume_of_box/test_get_size.py b/kyu_8/surface_area_and_volume_of_box/test_get_size.py index fa99e3e1f8d..90d3dc07ff7 100644 --- a/kyu_8/surface_area_and_volume_of_box/test_get_size.py +++ b/kyu_8/surface_area_and_volume_of_box/test_get_size.py @@ -62,7 +62,7 @@ def test_get_size(self): with allure.step("Pass w, h, and d values and verify the result"): w, h, d = 1, 1, 1 - expected: list = [6, 1] + expected = [6, 1] print_log(w=w, h=h, @@ -74,7 +74,7 @@ def test_get_size(self): with allure.step("Pass w, h, and d values and verify the result"): w, h, d = 1, 2, 1 - expected: list = [10, 2] + expected = [10, 2] print_log(w=w, h=h, @@ -86,7 +86,7 @@ def test_get_size(self): with allure.step("Pass w, h, and d values and verify the result"): w, h, d = 1, 2, 2 - expected: list = [16, 4] + expected = [16, 4] print_log(w=w, h=h, @@ -98,7 +98,7 @@ def test_get_size(self): with allure.step("Pass w, h, and d values and verify the result"): w, h, d = 10, 10, 10 - expected: list = [600, 1000] + expected = [600, 1000] print_log(w=w, h=h, From cb12f636aa12215ea8efa5b075e36aa8355bf58b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:15:25 -0700 Subject: [PATCH 012/291] Update test_messi_goals_function.py --- .../test_messi_goals_function.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kyu_8/grasshopper_messi_goals_function/test_messi_goals_function.py b/kyu_8/grasshopper_messi_goals_function/test_messi_goals_function.py index 3c7127108ba..a69045f494d 100644 --- a/kyu_8/grasshopper_messi_goals_function/test_messi_goals_function.py +++ b/kyu_8/grasshopper_messi_goals_function/test_messi_goals_function.py @@ -61,10 +61,10 @@ def test_goals(self): expected) with allure.step("Test with positive integers"): - la_liga: int = 5 - copa_del_rey: int = 10 - champions: int = 2 - expected: int = 17 + la_liga = 5 + copa_del_rey = 10 + champions = 2 + expected = 17 print_log(la_liga=la_liga, copa_del_rey=copa_del_rey, From 2d70f44875419a66951a6db0fafb2d732b094c32 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:17:28 -0700 Subject: [PATCH 013/291] Update README.md --- kyu_8/grasshopper_personalized_message/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_8/grasshopper_personalized_message/README.md b/kyu_8/grasshopper_personalized_message/README.md index cd909c5fdb5..f85354f795d 100644 --- a/kyu_8/grasshopper_personalized_message/README.md +++ b/kyu_8/grasshopper_personalized_message/README.md @@ -5,9 +5,9 @@ This function takes two parameters: name and owner. ## Use conditionals to return the proper message -| **case** | **return** | +| **case** | **return** | |-------------------------|:-------------------------:| -| *name equals owner* | 'Hello boss' | -| *otherwise* | 'Hello guest' | +| *name equals owner* | 'Hello boss' | +| *otherwise* | 'Hello guest' | [Source](https://www.codewars.com/kata/5772da22b89313a4d50012f7) From 8b39992aa1f8ae7cf0ef035ed4816538200573f3 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 28 Oct 2024 20:17:57 -0700 Subject: [PATCH 014/291] Update test_grasshopper_personalized_message.py kyu_8/grasshopper_personalized_message/test_grasshopper_personalized_message.py:61: error: Name "name" already defined on line 53 [no-redef] kyu_8/grasshopper_personalized_message/test_grasshopper_personalized_message.py:62: error: Name "owner" already defined on line 54 [no-redef] kyu_8/grasshopper_personalized_message/test_grasshopper_personalized_message.py:63: error: Name "expected" already defined on line 55 [no-redef] --- .../test_grasshopper_personalized_message.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_8/grasshopper_personalized_message/test_grasshopper_personalized_message.py b/kyu_8/grasshopper_personalized_message/test_grasshopper_personalized_message.py index 3a45ebd45b9..c7ebc2db024 100644 --- a/kyu_8/grasshopper_personalized_message/test_grasshopper_personalized_message.py +++ b/kyu_8/grasshopper_personalized_message/test_grasshopper_personalized_message.py @@ -58,8 +58,8 @@ def test_greet(self): # otherwise with allure.step("Test name not equals owner"): - name: str = 'Greg' - owner: str = 'Daniel' - expected: str = 'Hello guest' + name = 'Greg' + owner = 'Daniel' + expected = 'Hello guest' print_log(name=name, owner=owner, expected=expected) self.assertEqual(greet(name, owner), expected) From 336e7303ad7dc3189e530db1dbc0fa7334f51ce0 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 18:59:09 -0700 Subject: [PATCH 015/291] Update first_non_consecutive.py kyu_8/find_the_first_non_consecutive_number/first_non_consecutive.py:26: error: Incompatible return value type (got "Any | None", expected "int") [return-value] --- .../first_non_consecutive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kyu_8/find_the_first_non_consecutive_number/first_non_consecutive.py b/kyu_8/find_the_first_non_consecutive_number/first_non_consecutive.py index b625b6465c6..e88d5a1c966 100644 --- a/kyu_8/find_the_first_non_consecutive_number/first_non_consecutive.py +++ b/kyu_8/find_the_first_non_consecutive_number/first_non_consecutive.py @@ -5,7 +5,7 @@ """ -def first_non_consecutive(arr: list) -> int: +def first_non_consecutive(arr: list) -> int | None: """ Find the first element of an array that is not consecutive. From 07d82b42ee383a959b57ab3b927c25312e0ad6cc Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:05:09 -0700 Subject: [PATCH 016/291] Update check_exam.py kyu_8/check_the_exam/check_exam.py:27: error: Argument 1 to "char_processor" has incompatible type "tuple[Any, Any]"; expected "str" [arg-type] --- kyu_8/check_the_exam/check_exam.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/kyu_8/check_the_exam/check_exam.py b/kyu_8/check_the_exam/check_exam.py index 11ff7f7b9b1..319bf5d155f 100644 --- a/kyu_8/check_the_exam/check_exam.py +++ b/kyu_8/check_the_exam/check_exam.py @@ -5,7 +5,7 @@ """ -def check_exam(arr1, arr2) -> int: +def check_exam(arr1: list, arr2: list) -> int: """ The first input array contains the correct answers to an exam, like ["a", "a", "b", "d"]. The second @@ -18,9 +18,9 @@ def check_exam(arr1, arr2) -> int: If the score < 0, return 0. - :param arr1: - :param arr2: - :return: + :param arr1: list + :param arr2: list + :return: int """ results: list = [] for char in zip(arr1, arr2): @@ -30,7 +30,7 @@ def check_exam(arr1, arr2) -> int: return 0 if total < 0 else total -def char_processor(char: str, results: list) -> None: +def char_processor(char: tuple, results: list) -> None: """ Processing chars based on specified rule :param char: str From 2ef9ca182f78c0b79e7170d627f869f48359cc5b Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:07:02 -0700 Subject: [PATCH 017/291] Update test_reversed_strings.py kyu_8/reversed_strings/test_reversed_strings.py:97: error: Name "string" already defined on line 91 [no-redef] kyu_8/reversed_strings/test_reversed_strings.py:98: error: Name "expected" already defined on line 92 [no-redef] --- kyu_8/reversed_strings/test_reversed_strings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_8/reversed_strings/test_reversed_strings.py b/kyu_8/reversed_strings/test_reversed_strings.py index cd247ee9111..53188413bf7 100644 --- a/kyu_8/reversed_strings/test_reversed_strings.py +++ b/kyu_8/reversed_strings/test_reversed_strings.py @@ -94,7 +94,7 @@ def test_reversed_strings(self): self.assertEqual(solution(string), expected) with allure.step("Pass regular string and verify the output"): - string: str = 'hello' - expected: str = 'olleh' + string = 'hello' + expected = 'olleh' print_log(string=string, expected=expected) self.assertEqual(solution(string), expected) From 8fa240fb8f2d78e64da741cabf792d17f94d6fdd Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:08:31 -0700 Subject: [PATCH 018/291] Update test_first_non_consecutive.py --- .../test_first_non_consecutive.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py b/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py index e8b6008f360..fe89221e5a2 100644 --- a/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py +++ b/kyu_8/find_the_first_non_consecutive_number/test_first_non_consecutive.py @@ -108,9 +108,9 @@ def test_first_non_consecutive_large_list(self): 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] - expected: int = 101 - print_log(list=lst, expected=expected) - self.assertEqual(first_non_consecutive(lst), expected) + expected_int: int = 101 + print_log(list=lst, expected=expected_int) + self.assertEqual(first_non_consecutive(lst), expected_int) def test_first_non_consecutive_positive(self): """ From 9c4d353128568151ebbf172f3690b8ca205d7af4 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Tue, 29 Oct 2024 19:16:30 -0700 Subject: [PATCH 019/291] 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 020/291] 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 021/291] 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 022/291] 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 023/291] 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 024/291] 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 025/291] 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 026/291] 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 027/291] 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 028/291] 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 029/291] 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 030/291] 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 031/291] 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 032/291] 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 033/291] 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 034/291] 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 035/291] 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 036/291] 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 037/291] 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 038/291] 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 039/291] 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 040/291] 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 041/291] 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 042/291] 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 043/291] 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 044/291] 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 045/291] 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 046/291] 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 047/291] 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 048/291] 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 049/291] 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 050/291] 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 051/291] 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 052/291] 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 053/291] 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 054/291] 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 055/291] 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 056/291] 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 057/291] 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 058/291] 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 059/291] 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 060/291] 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 061/291] 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 062/291] 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 063/291] 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 064/291] 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 065/291] 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 066/291] 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 067/291] 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 068/291] 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 069/291] 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 070/291] 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 071/291] 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 072/291] 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 073/291] 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 074/291] 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 075/291] 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 076/291] 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 077/291] 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 078/291] 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 079/291] 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 080/291] 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 081/291] 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 082/291] 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 083/291] 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 084/291] 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 085/291] 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 086/291] 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 087/291] 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 088/291] 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 089/291] 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 090/291] # 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 091/291] 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 092/291] 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 093/291] 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 094/291] 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 095/291] 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 096/291] 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 097/291] 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 098/291] 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 099/291] 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 100/291] 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 101/291] 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 102/291] 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 103/291] 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 104/291] 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 105/291] 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 106/291] 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 107/291] 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 108/291] 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 109/291] 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 110/291] 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 111/291] 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 112/291] 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 113/291] 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 114/291] 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 115/291] 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 116/291] 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 117/291] 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 118/291] 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 119/291] 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 120/291] 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 121/291] 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 122/291] 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 123/291] 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 124/291] 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 125/291] 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 126/291] 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 127/291] 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 128/291] 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 129/291] 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 130/291] 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 131/291] 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 132/291] 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 133/291] 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 134/291] 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 135/291] 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 136/291] 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 137/291] 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 138/291] 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 139/291] 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 140/291] 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 141/291] 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 142/291] 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 143/291] 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 144/291] 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 145/291] 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 146/291] 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 147/291] 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 148/291] 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 149/291] 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 150/291] 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 151/291] 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 152/291] 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 153/291] 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 154/291] 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 155/291] 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 156/291] 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 157/291] 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 158/291] 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 159/291] 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 160/291] 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 161/291] 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 162/291] 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 163/291] 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 164/291] 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 165/291] 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 166/291] 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 167/291] 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 168/291] 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 169/291] 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 170/291] 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 171/291] 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 172/291] 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 173/291] 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 174/291] 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 175/291] 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 176/291] 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 177/291] 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 178/291] 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 179/291] 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 180/291] 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 181/291] 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 182/291] 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 183/291] 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 184/291] 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 185/291] 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 186/291] 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 187/291] 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 188/291] 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 189/291] 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 190/291] 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 191/291] 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 192/291] 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 193/291] 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 194/291] 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 195/291] 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 196/291] 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 197/291] 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 198/291] 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 199/291] 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 200/291] 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 201/291] 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 202/291] 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 203/291] 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 204/291] 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 205/291] 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 206/291] 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 207/291] 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 208/291] 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 209/291] 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 210/291] 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 211/291] 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 212/291] 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 213/291] 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 214/291] 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 215/291] 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 216/291] 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 217/291] 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 218/291] 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 219/291] 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 220/291] 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 221/291] /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 222/291] 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 223/291] 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 224/291] 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 225/291] 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 226/291] 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 227/291] /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 228/291] /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 229/291] 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 230/291] 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 231/291] 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 232/291] 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 233/291] 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 234/291] 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 235/291] 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 236/291] 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 237/291] 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 238/291] 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 239/291] 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 240/291] 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 241/291] 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 242/291] 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 243/291] 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 244/291] 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 245/291] 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 246/291] 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 247/291] 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 248/291] 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 249/291] 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 250/291] 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 251/291] 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 252/291] 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 253/291] 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 254/291] 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 255/291] 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 256/291] 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 257/291] 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 258/291] 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 259/291] 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 260/291] 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 261/291] 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 262/291] 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 263/291] 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 264/291] 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 265/291] 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 266/291] 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 267/291] 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 268/291] 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 269/291] 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 270/291] 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 271/291] 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 272/291] 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 273/291] 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 274/291] 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 275/291] 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 276/291] 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 277/291] 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 278/291] 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 279/291] 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 280/291] 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 281/291] 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 282/291] 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 283/291] 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 284/291] 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 285/291] 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 286/291] 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 287/291] 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 288/291] 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 289/291] 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 290/291] 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 291/291] 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: