Last active
May 23, 2026 02:08
-
-
Save jleechan2015/620c242faa423e92b0216d3c8dd4651d to your computer and use it in GitHub Desktop.
PR #407 reverse_string test evidence — SHA c47aba00
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ============================= test session starts ============================== | |
| platform darwin -- Python 3.13.7, pytest-9.0.3, pluggy-1.6.0 -- /Users/jleechan/.local/orch-venv/bin/python3.13 | |
| cachedir: .pytest_cache | |
| hypothesis profile 'default' | |
| rootdir: /Users/jleechan/.worktrees/mctrl-test/mt-138 | |
| plugins: hypothesis-6.152.5, anyio-4.13.0 | |
| collecting ... collected 45 items | |
| test_fibonacci.py::test_fibonacci_base_cases PASSED [ 2%] | |
| test_fibonacci.py::test_fibonacci_small_values PASSED [ 4%] | |
| test_fibonacci.py::test_fibonacci_larger_value PASSED [ 6%] | |
| test_fibonacci.py::test_fibonacci_negative_raises PASSED [ 8%] | |
| test_hello.py::test_hello_default PASSED [ 11%] | |
| test_hello.py::test_hello_custom_name PASSED [ 13%] | |
| test_hello.py::test_hello_returns_string PASSED [ 15%] | |
| test_hello.py::test_goodbye_default PASSED [ 17%] | |
| test_hello.py::test_goodbye_custom_name PASSED [ 20%] | |
| test_reverse_string.py::test_reverse_string_empty PASSED [ 22%] | |
| test_reverse_string.py::test_reverse_string_single_char PASSED [ 24%] | |
| test_reverse_string.py::test_reverse_string_palindrome PASSED [ 26%] | |
| test_reverse_string.py::test_reverse_string_hello PASSED [ 28%] | |
| test_reverse_string.py::test_reverse_string_with_spaces PASSED [ 31%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_example_1 PASSED [ 33%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_example_2 PASSED [ 35%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_example_3 PASSED [ 37%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_open_endpoints_no_path PASSED [ 40%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_single_cell_empty PASSED [ 42%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_single_cell_blocked PASSED [ 44%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_start_blocked PASSED [ 46%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_end_blocked PASSED [ 48%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_diagonal_path PASSED [ 51%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_diagonal_blocked PASSED [ 53%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_no_obstacles PASSED [ 55%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_maze_with_walls PASSED [ 57%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_large_grid PASSED [ 60%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_two_by_two_clear PASSED [ 62%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrix::test_two_by_two_blocked_diagonal PASSED [ 64%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrixDFS::test_consistency_with_bfs_basic PASSED [ 66%] | |
| test_shortest_path_binary_matrix.py::TestShortestPathBinaryMatrixDFS::test_dfs_no_path PASSED [ 68%] | |
| test_two_sum.py::TestTwoSum::test_example_1 PASSED [ 71%] | |
| test_two_sum.py::TestTwoSum::test_example_2 PASSED [ 73%] | |
| test_two_sum.py::TestTwoSum::test_example_3 PASSED [ 75%] | |
| test_two_sum.py::TestTwoSum::test_negative_numbers PASSED [ 77%] | |
| test_two_sum.py::TestTwoSum::test_zero_target PASSED [ 80%] | |
| test_two_sum.py::TestTwoSum::test_no_solution_raises PASSED [ 82%] | |
| test_valid_parentheses.py::TestValidParentheses::test_example_1 PASSED [ 84%] | |
| test_valid_parentheses.py::TestValidParentheses::test_example_2 PASSED [ 86%] | |
| test_valid_parentheses.py::TestValidParentheses::test_example_3 PASSED [ 88%] | |
| test_valid_parentheses.py::TestValidParentheses::test_nested PASSED [ 91%] | |
| test_valid_parentheses.py::TestValidParentheses::test_empty PASSED [ 93%] | |
| test_valid_parentheses.py::TestValidParentheses::test_single_open PASSED [ 95%] | |
| test_valid_parentheses.py::TestValidParentheses::test_interleaved_invalid PASSED [ 97%] | |
| test_valid_parentheses.py::TestValidParentheses::test_non_bracket_character_invalid PASSED [100%] | |
| ============================== 45 passed in 0.09s ============================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "{\"version\": 2, \"width\": 80, \"height\": 24, \"timestamp\": 1779502050, \"env\": {\"SHELL\": \"/bin/bash\", \"TERM\": \"tmux-256color\"}}\n[0.140891, \"o\", \"\\u001b[1m============================= test session starts ==============================\\u001b[0m\\r\\n\"]\n[0.141279, \"o\", \"platform darwin -- Python 3.13.7, pytest-9.0.3, pluggy-1.6.0 -- /Users/jleechan/.local/orch-venv/bin/python\\r\\n\"]\n[0.198651, \"o\", \"cachedir: .pytest_cache\\r\\nhypothesis profile 'default'\\r\\nrootdir: /Users/jleechan/.worktrees/mctrl-test/mt-138\\r\\nplugins: hypothesis-6.152.5, anyio-4.13.0\\r\\n\"]\n[0.198732, \"o\", \"\\u001b[1mcollecting ... \\u001b[0m\"]\n[0.205314, \"o\", \"\\u001b[1m\\rcollected 5 items \\u001b[0m\\r\\n\"]\n[0.205489, \"o\", \"\\r\\ntest_reverse_string.py::test_reverse_string_empty \"]\n[0.205792, \"o\", \"\\u001b[32mPASSED\\u001b[0m\"]\n[0.205838, \"o\", \"\\u001b[32m [ 20%]\\u001b[0m\"]\n[0.205951, \"o\", \"\\r\\ntest_reverse_string.py::test_reverse_string_single_char \"]\n[0.206092, \"o\", \"\\u001b[32mPASSED\\u001b[0m\"]\n[0.206135, \"o\", \"\\u001b[32m [ 40%]\\u001b[0m\"]\n[0.206217, \"o\", \"\\r\\ntest_reverse_string.py::test_reverse_string_palindrome \"]\n[0.206333, \"o\", \"\\u001b[32mPASSED\\u001b[0m\"]\n[0.206373, \"o\", \"\\u001b[32m [ 60%]\\u001b[0m\"]\n[0.20644, \"o\", \"\\r\\ntest_reverse_string.py::test_reverse_string_hello \"]\n[0.20661, \"o\", \"\\u001b[32mPASSED\\u001b[0m\"]\n[0.206632, \"o\", \"\\u001b[32m [ 80%]\\u001b[0m\"]\n[0.206751, \"o\", \"\\r\\ntest_reverse_string.py::test_reverse_string_with_spaces \"]\n[0.206867, \"o\", \"\\u001b[32mPASSED\\u001b[0m\"]\n[0.206898, \"o\", \"\\u001b[32m [100%]\\u001b[0m\"]\n[0.207236, \"o\", \"\\r\\n\"]\n[0.207325, \"o\", \"\\r\\n\\u001b[32m============================== \\u001b[32m\\u001b[1m5 passed\\u001b[0m\\u001b[32m in 0.07s\\u001b[0m\\u001b[32m ===============================\\u001b[0m\\r\\n\"]\n[0.25207, \"o\", \"SHA: c47aba00\\r\\n\"]\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ============================= test session starts ============================== | |
| platform darwin -- Python 3.13.7, pytest-9.0.3, pluggy-1.6.0 -- /Users/jleechan/.local/orch-venv/bin/python3.13 | |
| cachedir: .pytest_cache | |
| hypothesis profile 'default' | |
| rootdir: /Users/jleechan/.worktrees/mctrl-test/mt-138 | |
| plugins: hypothesis-6.152.5, anyio-4.13.0 | |
| collecting ... collected 5 items | |
| test_reverse_string.py::test_reverse_string_empty PASSED [ 20%] | |
| test_reverse_string.py::test_reverse_string_single_char PASSED [ 40%] | |
| test_reverse_string.py::test_reverse_string_palindrome PASSED [ 60%] | |
| test_reverse_string.py::test_reverse_string_hello PASSED [ 80%] | |
| test_reverse_string.py::test_reverse_string_with_spaces PASSED [100%] | |
| ============================== 5 passed in 0.10s =============================== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment