Skip to content

Commit

Permalink
delegate licensecheck to noxfile
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Oct 23, 2024
1 parent 12320fb commit d4252f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,10 @@ def tests(session) -> None:
"""Runs the test suite."""
session.install(".[testing]")
session.run("pytest")


@nox.session
def licensecheck(session) -> None:
"""Runs the license check."""
session.install("licensecheck")
session.run("licensecheck")
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ dev = [
"rich>=13.7.0",
"ruff>=0.3.5",
"xmltodict",
"licensecheck",
"hdbscan",
"nox[uv]",
"spatialdata>=0.2.3",
Expand Down

0 comments on commit d4252f6

Please sign in to comment.