You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I make a change, causing the tests to re-run, I get this error:
lib/python3.6/site-packages/_pytest/runner.py:244: in from_call
result = func()
lib/python3.6/site-packages/_pytest/runner.py:264: in <lambda>
call = CallInfo.from_call(lambda: list(collector.collect()), "collect")
lib/python3.6/site-packages/_pytest/main.py:498: in collect
yield from self._collect(fspath, parts)
lib/python3.6/site-packages/_pytest/main.py:581: in _collect
yield next(m[0].collect())
E AttributeError: 'MypyStatusItem' object has no attribute 'collect'
The text was updated successfully, but these errors were encountered:
From 6.0.0 through 6.1.2, it manifests a bit differently:
venv/lib/python3.8/site-packages/_pytest/runner.py:310: in from_call
result = func() # type: Optional[TResult]
venv/lib/python3.8/site-packages/_pytest/runner.py:340: in <lambda>
call = CallInfo.from_call(lambda: list(collector.collect()), "collect")
venv/lib/python3.8/site-packages/_pytest/main.py:777: in collect
assert isinstance(matching[0], nodes.Collector)
E AssertionError
I'm getting an error when running pytest 5.4 + pytest-xdist 1.22 + pytest-mypy 0.8.0:
When I make a change, causing the tests to re-run, I get this error:
The text was updated successfully, but these errors were encountered: