mirror of
https://github.com/tcsenpai/Zundler.git
synced 2025-06-03 01:50:19 +00:00
15 lines
337 B
Python
15 lines
337 B
Python
import nox
|
|
|
|
|
|
@nox.session()
|
|
def tests(session):
|
|
session.install(".[tests]")
|
|
session.run("pytest", "--driver=firefox", *session.posargs)
|
|
|
|
|
|
@nox.session()
|
|
def black(session):
|
|
session.install(".[tests]")
|
|
session.run("black", "src", "--check", *session.posargs)
|
|
session.run("black", "tests", "--check", *session.posargs)
|