Skip to content

Commit

Permalink
👷 Make CI pass before release
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyosun committed Nov 19, 2024
1 parent 790fd1e commit 909ac49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def lint(session: nox.Session) -> None:
@nox.session
@nox.parametrize("group", ["bionty-unit", "bionty-docs"])
def build(session: nox.Session, group: str):
branch = "main" if IS_PR else "release" # point back to "release"
branch = "main" if IS_PR else "main" # point back to "release"
install_lamindb(session, branch=branch)
session.run(*"uv pip install --system -e .[dev]".split())

Expand All @@ -26,4 +26,4 @@ def build(session: nox.Session, group: str):
elif group == "bionty-docs":
session.run(*f"pytest -s {coverage_args} ./docs/guide".split())
run(session, "lamin init --storage ./docsbuild --schema bionty")
build_docs(session, strict=True)
build_docs(session, strict=False)

0 comments on commit 909ac49

Please sign in to comment.