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 51b2ba2 commit f9fa2feCopy full SHA for f9fa2fe
torchx/tracker/backend/__init__.py
@@ -0,0 +1,6 @@
1
+#!/usr/bin/env python3
2
+# Copyright (c) Meta Platforms, Inc. and affiliates.
3
+# All rights reserved.
4
+#
5
+# This source code is licensed under the BSD-style license found in the
6
+# LICENSE file in the root directory of this source tree.
torchx/tracker/backend/test/fsspec_test.py
@@ -92,7 +92,7 @@ def test_run_ids(self) -> None:
92
tracker.add_source(self.run_id, self.parent_run_id)
93
94
run_ids = tracker.run_ids()
95
- self.assertEqual(run_ids, [self.parent_run_id, self.run_id])
+ self.assertEqual(set(run_ids), set([self.parent_run_id, self.run_id]))
96
97
def test_run_ids_filter_by_parent(self) -> None:
98
with tempfile.TemporaryDirectory() as root_dir:
0 commit comments