1 py$(PYV): remove tox env folder $(@D)/.tox/py$(PYV)
2 py$(PYV): commands[0]> python -m pytest
3 ============================= test session starts ==============================
4 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(@D)/.tox/py$(PYV)/bin/python
5 cachedir: .tox/py$(PYV)/.pytest_cache
9 collecting ... collected 92 items
11 tests/test_configupdater.py::test_add_before_after_comment PASSED
12 tests/test_configupdater.py::test_add_before_after_option PASSED
13 tests/test_configupdater.py::test_add_before_after_section PASSED
14 tests/test_configupdater.py::test_add_before_after_space PASSED
15 tests/test_configupdater.py::test_add_before_then_add_after_option PASSED
16 tests/test_configupdater.py::test_add_detached_section_option_objects PASSED
17 tests/test_configupdater.py::test_add_section PASSED
18 tests/test_configupdater.py::test_append_to_comma_separated_value PASSED
19 tests/test_configupdater.py::test_append_to_multi_line_value PASSED
20 tests/test_configupdater.py::test_append_to_no_multi_line_value PASSED
21 tests/test_configupdater.py::test_as_list_comma_separated PASSED
22 tests/test_configupdater.py::test_as_list_multi_line PASSED
23 tests/test_configupdater.py::test_assure_no_duplicate_options PASSED
24 tests/test_configupdater.py::test_comments_in_multiline_options PASSED
25 tests/test_configupdater.py::test_comments_in_multiline_values PASSED
26 tests/test_configupdater.py::test_constructor PASSED
27 tests/test_configupdater.py::test_contains_options PASSED
28 tests/test_configupdater.py::test_contains_section PASSED
29 tests/test_configupdater.py::test_deepcopy PASSED
30 tests/test_configupdater.py::test_del_option PASSED
31 tests/test_configupdater.py::test_del_section PASSED
32 tests/test_configupdater.py::test_duplicate_option_error PASSED
33 tests/test_configupdater.py::test_duplicate_section_error PASSED
34 tests/test_configupdater.py::test_empty_lines_in_values_support PASSED
35 tests/test_configupdater.py::test_eq PASSED
36 tests/test_configupdater.py::test_get_method PASSED
37 tests/test_configupdater.py::test_get_option PASSED
38 tests/test_configupdater.py::test_get_options PASSED
39 tests/test_configupdater.py::test_get_section PASSED
40 tests/test_configupdater.py::test_handle_error PASSED
41 tests/test_configupdater.py::test_has_option PASSED
42 tests/test_configupdater.py::test_has_section PASSED
43 tests/test_configupdater.py::test_indented_comment PASSED
44 tests/test_configupdater.py::test_indented_section PASSED
45 tests/test_configupdater.py::test_inline_comments PASSED
46 tests/test_configupdater.py::test_insert_at PASSED
47 tests/test_configupdater.py::test_items PASSED
48 tests/test_configupdater.py::test_iter_consistency_with_configparser PASSED
49 tests/test_configupdater.py::test_iter_items_section PASSED
50 tests/test_configupdater.py::test_iter_option PASSED
51 tests/test_configupdater.py::test_iter_section PASSED
52 tests/test_configupdater.py::test_len_option PASSED
53 tests/test_configupdater.py::test_len_section PASSED
54 tests/test_configupdater.py::test_len_updater PASSED
55 tests/test_configupdater.py::test_missing_section_error PASSED
56 tests/test_configupdater.py::test_modify_multiline_value PASSED
57 tests/test_configupdater.py::test_navigation_and_remove PASSED
58 tests/test_configupdater.py::test_no_duplicate_blocks_with_blockbuilder PASSED
59 tests/test_configupdater.py::test_no_space_around_delim PASSED
60 tests/test_configupdater.py::test_no_value PASSED
61 tests/test_configupdater.py::test_parsing_of_brackets_in_section_names PASSED
62 tests/test_configupdater.py::test_parsing_of_brackets_in_section_names_comments PASSED
63 tests/test_configupdater.py::test_read_file_like PASSED
64 tests/test_configupdater.py::test_read_file_with_string PASSED
65 tests/test_configupdater.py::test_read_mixed_case_options PASSED
66 tests/test_configupdater.py::test_read_write_no_changes PASSED
67 tests/test_configupdater.py::test_remove_option PASSED
68 tests/test_configupdater.py::test_rename_option_key PASSED
69 tests/test_configupdater.py::test_section_comment PASSED
70 tests/test_configupdater.py::test_section_set_option PASSED
71 tests/test_configupdater.py::test_section_to_dict PASSED
72 tests/test_configupdater.py::test_section_without_end_of_line PASSED
73 tests/test_configupdater.py::test_sections PASSED
74 tests/test_configupdater.py::test_set_item_section PASSED
75 tests/test_configupdater.py::test_set_option PASSED
76 tests/test_configupdater.py::test_set_optionxform PASSED
77 tests/test_configupdater.py::test_set_values_for_existing_multiline_value PASSED
78 tests/test_configupdater.py::test_setitem_detached_option PASSED
79 tests/test_configupdater.py::test_str PASSED
80 tests/test_configupdater.py::test_transfering_sections_and_manipulating_options PASSED
81 tests/test_configupdater.py::test_transfering_sections_and_manipulating_options_with_deepcopy PASSED
82 tests/test_configupdater.py::test_transferring_blocks_between_elements PASSED
83 tests/test_configupdater.py::test_update_file_issue_68 PASSED
84 tests/test_configupdater.py::test_update_mixed_case_options PASSED
85 tests/test_configupdater.py::test_update_no_cfg PASSED
86 tests/test_configupdater.py::test_update_no_changes PASSED
87 tests/test_configupdater.py::test_updater_to_dict PASSED
88 tests/test_configupdater.py::test_validate_format PASSED
89 tests/test_configupdater.py::test_validate_format_propagates_kwargs PASSED
90 tests/test_configupdater.py::test_value_change PASSED
91 tests/test_option.py::test_deepcopy PASSED
92 tests/test_option.py::test_str_for_none_value PASSED
93 tests/test_option.py::test_str_for_set_values PASSED
94 tests/test_optionxform.py::test_custom PASSED
95 tests/test_optionxform.py::test_section_contains PASSED
96 tests/test_optionxform.py::test_section_setitem PASSED
97 tests/test_optionxform.py::test_stdlib_docs_compatibility PASSED
98 tests/test_parser.py::test_syntax_options PASSED
99 tests/test_parser.py::test_syntax_options_read_only PASSED
100 tests/test_section.py::test_clear_error_message PASSED
101 tests/test_section.py::test_deepcopy PASSED
102 tests/test_section.py::test_set PASSED
105 ======== 92 passed ========