-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnoxfile.py
64 lines (49 loc) · 2.11 KB
/
noxfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from pathlib import Path
from shutil import rmtree
from typing import Callable
from nox import Session, session
HERE = Path(__file__).parent
TEMPLATE_DIR = HERE / "{{cookiecutter.repository_name}}"
SessionFunc = Callable[[Session], None]
@session(tags=["test"])
def test_suite(session: Session) -> None:
build_test_repo(session)
install_latest_reactpy(session)
session.chdir("test-repo")
session.run("playwright", "install", "chromium")
session.run("pytest", "tests", "--import-mode=importlib", *session.posargs)
@session(tags=["test"])
def test_style(session: Session) -> None:
build_test_repo(session, install=False)
session.install("black", "flake8")
session.run("black", "--check", "test-repo", *list(map(str, HERE.glob("*.py"))))
session.run("flake8", "test-repo")
def build_test_repo(session: Session, install: bool = True) -> None:
"""Build a test repo from test-config.yaml"""
# Need to remove node_modules so cookiecutter doesn't think since the cookiecutter
# will try to format those files if present
for path in TEMPLATE_DIR.rglob("node_modules"):
if path.is_dir():
rmtree(path)
session.install("cookiecutter")
if (HERE / "test-repo").exists():
# Run first so that after each test run you can inspect the generated template
# code to do some debugging. This also has the added benefit of being rebust
# against KeyboardInterrupt exceptions triggered by the user.
rmtree(HERE / "test-repo")
session.run("cookiecutter", "--config-file", "test-config.yaml", "--no-input", ".")
if install:
session.chdir("test-repo")
session.install(".")
session.install("-r", "requirements.txt")
session.chdir("..")
def install_latest_reactpy(session: Session) -> SessionFunc:
# install the latest version of ReactPy by pulling it from the main repo
try:
session.install(
"reactpy[testing,starlette] @ git+https://github.com/reactive-python/reactpy"
)
finally:
reactpy_dir = HERE / "reactpy"
if reactpy_dir.exists():
rmtree(reactpy_dir)