Skip to content

Commit

Permalink
Define test execution in noxfile
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Jun 28, 2024
1 parent 1992aac commit 07e0c28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import nox


@nox.session
def tests(session):
session.install(".[testing]")
session.run("pytest")
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ dev = [
"tifffile>=2024.2.12",
"xmltodict",
"licensecheck",
"hdbscan"
"hdbscan",
"nox"
]

# potentially relevant in the future again:
Expand Down

0 comments on commit 07e0c28

Please sign in to comment.