We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca0235 commit 8856b48Copy full SHA for 8856b48
1 file changed
tests/usethis/test_tool.py
@@ -163,7 +163,7 @@ def test_some_deps(self, uv_init_dir: Path):
163
with change_cwd(uv_init_dir):
164
add_deps_to_group(
165
[
166
- Dependency(name="isort"),
+ Dependency(name="black"),
167
],
168
"eggs",
169
)
@@ -174,23 +174,6 @@ def test_some_deps(self, uv_init_dir: Path):
174
# Assert
175
assert result
176
177
- @pytest.mark.usefixtures("_vary_network_conn")
178
- def test_non_managed_deps(self, uv_init_dir: Path):
179
- # Arrange
180
- tool = MyTool()
181
- with change_cwd(uv_init_dir):
182
- add_deps_to_group(
183
- [
184
- Dependency(name="black"),
185
- ],
186
- "eggs",
187
- )
188
- # Act
189
- result = tool.is_used()
190
-
191
- # Assert
192
- assert not result
193
194
def test_files(self, uv_init_dir: Path):
195
# Arrange
196
tool = MyTool()
0 commit comments