Skip to content

Commit

Permalink
Add make live_website, website
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Feb 13, 2024
1 parent a1679db commit 67beffc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tooling/src/hypothesistooling/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,16 @@ def documentation():
)


@task()
def website():
subprocess.call(["pelican"], cwd=tools.ROOT / "website")


@task()
def live_website():
subprocess.call(["pelican", "--autoreload", "--listen"], cwd=tools.ROOT / "website")


def run_tox(task, version, *args):
python = install.python_executable(version)

Expand Down

0 comments on commit 67beffc

Please sign in to comment.