Skip to content

Commit aed95f8

Browse files
Conformance tests: mark pytype as failing generics_scope (#1704)
It fails to produce errors on a few lines expected by the test. Also fix an unrelated pytype error and ignore an unrelated pyre error. Part of #1692
1 parent b9124c0 commit aed95f8

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

conformance/results/pyre/generics_scoping.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,5 @@ conformance_automated = "Fail"
2020
errors_diff = """
2121
Line 65: Expected 1 errors
2222
Line 75: Expected 1 errors
23-
Line 74: Unexpected errors ['generics_scoping.py:74:0 Uninitialized attribute [13]: Attribute `attr` is declared in class `Outer` to have type `Outer.Inner[Variable[T]]` but is never initialized.']
24-
Line 77: Unexpected errors ['generics_scoping.py:77:4 Uninitialized attribute [13]: Attribute `x` is declared in class `Outer.AlsoBad` to have type `typing.List[Variable[T]]` but is never initialized.']
2523
"""
24+
ignore_errors = ["Uninitialized attribute [13]"]
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
conformant = "Pass"
1+
conformant = "Partial"
2+
notes = """
3+
Fails to reject type alias within generic class that uses class's type variable.
4+
Fails to reject unbound type variable in constructor call in global scope.
5+
"""
26
output = """
37
File "generics_scoping.py", line 29, in <module>: Function MyClass.meth_2 was called with the wrong arguments [wrong-arg-types]
4-
File "generics_scoping.py", line 39, in method: bad return type [bad-return-type]
5-
Called from (traceback):
6-
line 43, in current file
7-
File "generics_scoping.py", line 39, in method: bad return type [bad-return-type]
8-
Called from (traceback):
9-
line 42, in current file
108
File "generics_scoping.py", line 50, in fun_3: Invalid type annotation 'List[S]' for z [invalid-annotation]
119
File "generics_scoping.py", line 54, in Bar: Invalid type annotation 'List[S]' for an_attr [invalid-annotation]
1210
File "generics_scoping.py", line 63, in fun_4: Invalid type annotation 'T' [invalid-annotation]
@@ -21,7 +19,6 @@ Line 65: Expected 1 errors
2119
Line 75: Expected 1 errors
2220
Line 84: Expected 1 errors
2321
Line 90: Expected 1 errors
24-
Line 39: Unexpected errors ['File "generics_scoping.py", line 39, in method: bad return type [bad-return-type]', 'File "generics_scoping.py", line 39, in method: bad return type [bad-return-type]']
2522
Line 63: Unexpected errors ['File "generics_scoping.py", line 63, in fun_4: Invalid type annotation \\'T\\' [invalid-annotation]']
2623
Line 74: Unexpected errors ['File "generics_scoping.py", line 74, in <module>: Invalid type annotation \\'Outer\\' [invalid-annotation]']
2724
"""

conformance/tests/generics_scoping.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def meth_2(self, x: T) -> T: # and here are always the same
3636

3737
class Foo(Generic[T]):
3838
def method(self, x: T, y: S) -> S:
39-
...
39+
return y
4040

4141
x: Foo[int] = Foo()
4242
assert_type(x.method(0, "abc"), str)
@@ -54,7 +54,7 @@ class Bar(Generic[T]):
5454
an_attr: list[S] = [] # E
5555

5656
def do_something(self, x: S) -> S: # OK
57-
...
57+
return x
5858

5959
# A generic class definition that appears inside a generic function
6060
# should not use type variables that parameterize the generic function.

0 commit comments

Comments
 (0)