Skip to content

Commit

Permalink
adding black check to noxfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kbonney committed Jul 18, 2023
1 parent 33a649e commit b998044
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@ def docs(session):

@nox.session
def serve(session):
session.run("python", "-m", "http.server", "-b", "localhost", "-d", "docs/_build/html", "8085")
session.run("python", "-m", "http.server", "-b", "localhost", "-d", "docs/_build/html", "8085")

@nox.session
def check_style(session):
session.run("black", "--check")

0 comments on commit b998044

Please sign in to comment.