diff --git a/pyproject.toml b/pyproject.toml index a96fa8db49..bd910a8e34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -182,6 +182,8 @@ filterwarnings = [ '''ignore:.*The `NO_SHARD` sharding strategy is deprecated.*:FutureWarning''', # Some unit tests use ShardedTensor, though by default we use DTensor '''ignore:.*Please use DTensor instead and we are deprecating.*:FutureWarning''', + # Ignore NeptuneLogger warnings + '''ignore:.*NVML Shared Library Not Found. GPU usage metrics may not be reported.*''', ] # Coverage diff --git a/tests/utils/object_store/test_azure_object_store.py b/tests/utils/object_store/test_azure_object_store.py index 3a83ee6a74..949e2149ff 100644 --- a/tests/utils/object_store/test_azure_object_store.py +++ b/tests/utils/object_store/test_azure_object_store.py @@ -9,7 +9,6 @@ @pytest.mark.remote -@pytest.mark.skip(reason='Waiting for new Azure key to be approved') def test_azure_object_store_integration(): model = SimpleModel() train_dataloader = DataLoader(dataset=RandomClassificationDataset())