Skip to content

Commit

Permalink
💚 ci(pre-commit): update to manual pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nstarman committed Jan 21, 2025
1 parent cec6837 commit 35ffff1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
- name: Install the project
run: uv sync --group nox

# - uses: pre-commit/[email protected]
# with:
# extra_args: --hook-stage manual --all-files
- uses: pre-commit/[email protected]
with:
extra_args: --hook-stage manual --all-files

- name: Run PyLint
run: uv run nox -s pylint -- --output-format=github

Expand Down
2 changes: 0 additions & 2 deletions tests/integration/quaxed/test_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,6 @@ def test_bitwise_left_shift():
assert jnp.array_equal(got.value, expected.value)


@pytest.mark.xfail(reason="TODO")
def test_bitwise_invert():
"""Test `bitwise_invert`."""
x = u.Quantity(jnp.asarray([1, 2, 3], dtype=int), "")
Expand Down Expand Up @@ -836,7 +835,6 @@ def test_logical_and():
assert jnp.array_equal(got, expected)


@pytest.mark.xfail(reason="TODO")
def test_logical_not():
"""Test `logical_not`."""
x = u.Quantity([True, False, True], "")
Expand Down

0 comments on commit 35ffff1

Please sign in to comment.