8 lines
165 B
Python
8 lines
165 B
Python
import nox
|
|
|
|
|
|
@nox.session
|
|
def tests(session: nox.Session) -> None:
|
|
session.install("pytest")
|
|
session.run("pytest", "--doctest-modules", "arcaea_apk_assets")
|