Skip to content

Commit b8b0acb

Browse files
committed
fix conformance_automated
1 parent 1187f6e commit b8b0acb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

conformance/results/mypy/namedtuples_define_class.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namedtuples_define_class.py:86: error: Non-default NamedTuple fields cannot foll
1919
namedtuples_define_class.py:125: error: Argument 2 to "Property" has incompatible type "float"; expected "str" [arg-type]
2020
namedtuples_define_class.py:132: error: NamedTuple should be a single base [misc]
2121
"""
22-
conformance_automated = "Partial"
22+
conformance_automated = "Fail"
2323
errors_diff = """
2424
Line 69: Expected 1 errors
2525
Line 106: Expected 1 errors

conformance/results/mypy/namedtuples_define_functional.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
conformant = "Pass"
1+
conformant = "Partial"
22
output = """
33
namedtuples_define_functional.py:16: error: Missing positional argument "y" in call to "Point1" [call-arg]
44
namedtuples_define_functional.py:21: error: Missing positional arguments "x", "y" in call to "Point2" [call-arg]
@@ -17,7 +17,7 @@ namedtuples_define_functional.py:67: error: Missing positional argument "_1" in
1717
namedtuples_define_functional.py:68: error: Too many arguments for "NT5" [call-arg]
1818
namedtuples_define_functional.py:69: error: Missing positional arguments "abc", "_1" in call to "NT5" [call-arg]
1919
"""
20-
conformance_automated = "Partial"
20+
conformance_automated = "Fail"
2121
errors_diff = """
2222
Line 66: Unexpected errors ['namedtuples_define_functional.py:66: error: Name "NT5" already defined on line 57 [no-redef]']
2323
Line 67: Unexpected errors ['namedtuples_define_functional.py:67: error: Missing positional argument "_1" in call to "NT5" [call-arg]']

conformance/results/pyre/namedtuples_define_class.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namedtuples_define_class.py:106:4 Invalid assignment [41]: Cannot reassign final
2222
namedtuples_define_class.py:125:18 Incompatible parameter type [6]: In call `Property.__init__`, for 2nd positional argument, expected `str` but got `float`.
2323
namedtuples_define_class.py:132:23 Invalid inheritance [39]: If NamedTuple is included as a base class, the class may not extend anything else besides Generic.
2424
"""
25-
conformance_automated = "Partial"
25+
conformance_automated = "Fail"
2626
errors_diff = """
2727
Line 69: Expected 1 errors
2828
Line 76: Expected 1 errors

conformance/results/pyre/namedtuples_define_functional.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
conformant = "Pass"
1+
conformant = "Partial"
22
notes = """
33
"""
44
output = """
@@ -16,7 +16,7 @@ namedtuples_define_functional.py:58:0 Unexpected keyword [28]: Unexpected keywor
1616
namedtuples_define_functional.py:60:0 Unexpected keyword [28]: Unexpected keyword argument `_1` to call `NT6.__init__`.
1717
namedtuples_define_functional.py:69:0 Missing argument [20]: Call `NT5.__init__` expects argument `a`.
1818
"""
19-
conformance_automated = "Partial"
19+
conformance_automated = "Fail"
2020
errors_diff = """
2121
Line 58: Unexpected errors ['namedtuples_define_functional.py:58:0 Unexpected keyword [28]: Unexpected keyword argument `abc` to call `NT5.__init__`.']
2222
Line 60: Unexpected errors ['namedtuples_define_functional.py:60:0 Unexpected keyword [28]: Unexpected keyword argument `_1` to call `NT6.__init__`.']

conformance/results/pyright/namedtuples_define_functional.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
conformant = "Pass"
1+
conformant = "Partial"
22
output = """
33
namedtuples_define_functional.py:16:8 - error: Argument missing for parameter "y" (reportCallIssue)
44
namedtuples_define_functional.py:21:8 - error: Arguments missing for parameters "x", "y" (reportCallIssue)
@@ -20,7 +20,7 @@ namedtuples_define_functional.py:59:33 - error: Named tuple field names cannot s
2020
namedtuples_define_functional.py:60:13 - error: No parameter named "_1" (reportCallIssue)
2121
namedtuples_define_functional.py:69:1 - error: Argument missing for parameter "a" (reportCallIssue)
2222
"""
23-
conformance_automated = "Partial"
23+
conformance_automated = "Fail"
2424
errors_diff = """
2525
Line 59: Unexpected errors ['namedtuples_define_functional.py:59:33 - error: Named tuple field names cannot start with an underscore (reportGeneralTypeIssues)']
2626
Line 60: Unexpected errors ['namedtuples_define_functional.py:60:13 - error: No parameter named "_1" (reportCallIssue)']

0 commit comments

Comments
 (0)