We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4393f7d commit e1f1fbeCopy full SHA for e1f1fbe
test/conftest.py
@@ -49,7 +49,8 @@ def pytest_collection_modifyitems(items):
49
# There are special cases though, see below
50
item.add_marker(pytest.mark.skip(reason=CUDA_NOT_AVAILABLE_MSG))
51
52
- if needs_mps and not torch.backends.mps.is_available():
+ # TODO: uncoment when MPS works again - see FIXME in setup.py
53
+ if needs_mps: # and not torch.backends.mps.is_available():
54
item.add_marker(pytest.mark.skip(reason=MPS_NOT_AVAILABLE_MSG))
55
56
if IN_FBCODE:
0 commit comments