Skip to content

Commit

Permalink
chore: add nox develop session (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut authored Jan 3, 2022
1 parent 5479197 commit c471dee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,9 @@ def build(session: nox.Session) -> None:
Make an SDist and a wheel.
"""
_build(session, Path("dist"))


@nox.session(python=PYTHON_ALL_VERSIONS, reuse_venv=True)
def develop(session: nox.Session) -> None:
session.run("python", "-m", "pip", "install", "--upgrade", "pip", "setuptools")
session.install("-e", ".[develop]")

0 comments on commit c471dee

Please sign in to comment.