Skip to content

Commit 362e85d

Browse files
authored
remove tag session from noxfile (#2368)
Follows on from 932e5d6 to drop the tag session from the noxfile.
1 parent 807ead2 commit 362e85d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

noxfile.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -249,18 +249,3 @@ def make(session: nox.Session):
249249
*make_args,
250250
external=True,
251251
)
252-
253-
254-
@nox.session
255-
def tag(session: nox.Session):
256-
"""
257-
Check the core repo for new releases and create tags in ansible-documentation
258-
"""
259-
install(session, req="tag")
260-
args = list(session.posargs)
261-
262-
# If run without any arguments, default to "tag"
263-
if not any(arg.startswith(("hash", "mantag", "new-tags", "tag")) for arg in args):
264-
args.append("tag")
265-
266-
session.run("python", "hacking/tagger/tag.py", *args)

0 commit comments

Comments
 (0)