Skip to content

Commit

Permalink
Bump minor version and test case refactor (#17)
Browse files Browse the repository at this point in the history
Co-authored-by: zombie-einstein <zombie-einstein@proton.me>
  • Loading branch information
zombie-einstein and zombie-einstein authored Sep 11, 2023
1 parent 9c416ac commit 7056a47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "jpviz"
version = "0.1.4"
version = "0.1.5"
description = "Jaxpr Visualisation Tool"
authors = ["zombie-einstein"]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions tests/test_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ def body(carry, a_elems):


@pytest.mark.parametrize("f, args", test_cases)
def test_works(f, args):
_ = jpviz.draw(f, collapse_primitives=True)(*args)
_ = jpviz.draw(f, collapse_primitives=False)(*args)
@pytest.mark.parametrize("collapse_primitives", [True, False])
def test_works(f, args, collapse_primitives):
_ = jpviz.draw(f, collapse_primitives=collapse_primitives)(*args)

0 comments on commit 7056a47

Please sign in to comment.