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
Ironically, in my attempt to add types to wptrunner, trying to run various options under MonkeyType , found an AttributeError, which seems like a type bug…
Traceback (most recent call last):
File "/Volumes/gsnedders/projects/wpt/web-platform-tests/./wpt", line 10, in <module>
wpt.main()
File "/Volumes/gsnedders/projects/wpt/web-platform-tests/tools/wpt/wpt.py", line 233, in main
rv = script(*args, **kwargs)
File "/Volumes/gsnedders/projects/wpt/web-platform-tests/tools/wpt/run.py", line 1010, in run
rv = run_single(venv, **wptrunner_kwargs) > 0
File "/Volumes/gsnedders/projects/wpt/web-platform-tests/tools/wpt/run.py", line 1019, in run_single
return wptrunner.start(**kwargs)
File "/Volumes/gsnedders/projects/wpt/web-platform-tests/tools/wptrunner/wptrunner/tracer.py", line 13, in wrapper
return func(*args, **kwds)
File "/Volumes/gsnedders/projects/wpt/web-platform-tests/tools/wptrunner/wptrunner/wptrunner.py", line 565, in start
list_disabled(**kwargs)
File "/Volumes/gsnedders/projects/wpt/web-platform-tests/tools/wptrunner/wptrunner/wptrunner.py", line 157, in list_disabled
rv.append({"test": test.id, "reason": test.disabled()})
AttributeError: 'str' object has no attribute 'id'
The text was updated successfully, but these errors were encountered:
Ironically, in my attempt to add types to wptrunner, trying to run various options under MonkeyType , found an AttributeError, which seems like a type bug…
The text was updated successfully, but these errors were encountered: