mirror of
https://github.com/tcsenpai/Zundler.git
synced 2025-06-06 03:25:28 +00:00
7 lines
143 B
Python
7 lines
143 B
Python
import nox
|
|
|
|
@nox.session()
|
|
def tests(session):
|
|
session.install(".[tests]")
|
|
session.run("pytest", '--driver=firefox', *session.posargs)
|