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 f543001 commit a1f3213Copy full SHA for a1f3213
tests/test_cache.py
@@ -91,11 +91,12 @@ def test_cache_creation(self):
91
"""
92
Check that clone_to_cache creates directory if needed.
93
94
- description = "upkie_description"
95
- repo = REPOSITORIES[description]
+ description_name = "simple_humanoid_description"
+ repo = REPOSITORIES[description_name]
96
+
97
with tempfile.TemporaryDirectory() as tmp_dir:
98
os.environ["ROBOT_DESCRIPTIONS_CACHE"] = tmp_dir
- clone_to_cache(description)
99
+ clone_to_cache(description_name)
100
self.assertTrue(
101
os.path.exists(os.path.join(tmp_dir, repo.cache_path))
102
)
0 commit comments