Skip to content

Commit 5158d88

Browse files
committed
Fix.
1 parent e033d1d commit 5158d88

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ name = "Tobias Raabe"
4747
email = "raabe@posteo.de"
4848

4949
[dependency-groups]
50+
dev = ["pygraphviz>=1.11;platform_system=='Linux'"]
5051
docs = [
5152
"furo",
5253
"ipython>=8.13.2",
@@ -85,9 +86,6 @@ Tracker = "https://github.com/pytask-dev/pytask/issues"
8586
[project.scripts]
8687
pytask = "pytask:cli"
8788

88-
[tool.uv]
89-
dev-dependencies = ["pygraphviz>=1.11;platform_system=='Linux'"]
90-
9189
[build-system]
9290
requires = ["hatchling", "hatch_vcs"]
9391
build-backend = "hatchling.build"

tests/test_hook_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def pytask_extend_command_line_interface(cli):
5252
else:
5353
args = ("pytask", "build", "--hook-module", "hooks/hooks.py", "--help")
5454

55-
result = run_in_subprocess(args, cwd=tmp_path, env={"NO_COLOR": "1"})
55+
result = run_in_subprocess(args, cwd=tmp_path)
5656
assert result.exit_code == ExitCode.OK
5757
assert "--new-option" in result.stdout
5858

0 commit comments

Comments
 (0)