Skip to content

Commit

Permalink
Try to fix CI (except coverage issue) (#1202)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasha10 authored Jan 4, 2025
1 parent 6f9656b commit 586d81a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion build_helpers/build_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def run(self) -> None: # type: ignore

class SDistCommand(sdist.sdist): # pragma: no cover
def run(self) -> None:
if not self.dry_run: # type: ignore
if not self.dry_run:
self.run_command("clean")
run_antlr(self)
sdist.sdist.run(self)
Expand Down
3 changes: 0 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,6 @@ def test_jupyter_notebook(session: Session) -> None:
# Ignore deprecation warnings raised by jupyter_client in Python 3.10
# https://github.com/jupyter/jupyter_client/issues/713
"-Wdefault:There is no current event loop:DeprecationWarning",
# Block warning issued by nbval
# https://github.com/computationalmodelling/nbval/issues/180
"-Wdefault::pytest.PytestRemovedIn8Warning",
]
)
session.run(
Expand Down

0 comments on commit 586d81a

Please sign in to comment.