mirror of https://github.com/pytest-dev/pytest.git
[4.6] Merge pull request #7179 from asottile/py39
This commit is contained in:
parent
020831d868
commit
2a5ca51fe8
|
@ -30,6 +30,8 @@ classifiers =
|
||||||
Programming Language :: Python :: 3.5
|
Programming Language :: Python :: 3.5
|
||||||
Programming Language :: Python :: 3.6
|
Programming Language :: Python :: 3.6
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
|
Programming Language :: Python :: 3.8
|
||||||
|
Programming Language :: Python :: 3.9
|
||||||
platforms = unix, linux, osx, cygwin, win32
|
platforms = unix, linux, osx, cygwin, win32
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
|
|
|
@ -501,7 +501,7 @@ def test_getfslineno():
|
||||||
class B(object):
|
class B(object):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
B.__name__ = "B2"
|
B.__name__ = B.__qualname__ = "B2"
|
||||||
assert getfslineno(B)[1] == -1
|
assert getfslineno(B)[1] == -1
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue