From c4bf689e54fd8b2904aa41caaf64cd03d84cd0ef Mon Sep 17 00:00:00 2001 From: Thierry Martinez Date: Thu, 2 Oct 2025 11:41:39 +0200 Subject: [PATCH] Revert reverse dependency check on main branch of `graphix-symbolic` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit restores the reverse‑dependency check against the main branch of `graphix-symbolic`. The check will become functional once the following pull request is approved and merged: https://github.com/TeamGraphix/graphix-symbolic/pull/4 --- noxfile.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/noxfile.py b/noxfile.py index 9473a13fc..0478ae363 100644 --- a/noxfile.py +++ b/noxfile.py @@ -62,8 +62,6 @@ def tests_symbolic(session: Session) -> None: with TemporaryDirectory() as tmpdir, session.cd(tmpdir): # If you need a specific branch: # session.run("git", "clone", "-b", "branch-name", "https://github.com/TeamGraphix/graphix-symbolic") - # See https://github.com/TeamGraphix/graphix-symbolic/pull/4 - session.run("git", "clone", "-b", "branch_selector", "https://github.com/thierry-martinez/graphix-symbolic") - # session.run("git", "clone", "https://github.com/TeamGraphix/graphix-symbolic") + session.run("git", "clone", "https://github.com/TeamGraphix/graphix-symbolic") with session.cd("graphix-symbolic"): session.run("pytest", "--doctest-modules")