Skip to content

Commit 8fd2af1

Browse files
committed
Rename gl-diff to gl-feature-fs-diff
1 parent 868491c commit 8fd2af1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ sphinx-rtd-theme = "^3.0.2"
4141

4242
[tool.poetry.scripts]
4343
gl-cname = "gardenlinux.features.cname_main:main"
44-
gl-diff = "gardenlinux.features.reproducibility.__main__:main"
44+
gl-feature-fs-diff = "gardenlinux.features.reproducibility.__main__:main"
4545
gl-features-parse = "gardenlinux.features.__main__:main"
4646
gl-flavors-parse = "gardenlinux.flavors.__main__:main"
4747
gl-gh-release = "gardenlinux.github.release.__main__:main"

src/gardenlinux/features/reproducibility/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
"""
5-
gl-diff main entrypoint
5+
gl-feature-fs-diff main entrypoint
66
"""
77

88
import argparse
@@ -78,7 +78,7 @@ def format(args: argparse.Namespace) -> None:
7878

7979
def main() -> None:
8080
"""
81-
gl-diff main()
81+
gl-feature-fs-diff main()
8282
8383
:since: 1.0.0
8484
"""

tests/features/test_reproducibility.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def test_formatter_main(
137137
nightly_stats = diff_files.joinpath(f"{i}-nightly_stats.csv")
138138

139139
argv = [
140-
"gl-diff",
140+
"gl-feature-fs-diff",
141141
"format",
142142
"--feature-dir",
143143
str(gardenlinux_root.joinpath("features")),
@@ -180,7 +180,7 @@ def test_comparator_main(
180180
type: str, monkeypatch: pytest.MonkeyPatch, capsys: pytest.CaptureFixture[str]
181181
) -> None:
182182
argv = [
183-
"gl-diff",
183+
"gl-feature-fs-diff",
184184
"generate",
185185
str(compare_files.joinpath(f"a{type}")),
186186
str(compare_files.joinpath(f"b{type}")),

0 commit comments

Comments
 (0)