Skip to content

Commit

Permalink
Fix typos (#839)
Browse files Browse the repository at this point in the history
  • Loading branch information
ember91 committed Aug 3, 2024
1 parent 7a77e80 commit e0868b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nox/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def keyword_match(expression: str, keywords: Iterable[str]) -> Any:


def _null_session_func_(session: Session) -> None:
"""A no-op session for patemetrized sessions with no available params."""
"""A no-op session for parametrized sessions with no available params."""
session.skip("This session had no parameters available.")


Expand Down
2 changes: 1 addition & 1 deletion nox/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def conda_install(
not change the current channels. You can specify a list of channels if
needed. It is highly recommended to specify this; micromamba does not
set default channels, and default channels vary for conda. Note that
"defaults" is also not permissivly licenced like "conda-forge" is.
"defaults" is also not permissively licensed like "conda-forge" is.
Additional keyword args are the same as for :meth:`run`.
Expand Down
2 changes: 1 addition & 1 deletion tests/resources/noxfile_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ def one_tag(unused_session):


@nox.session(tags=["tag1", "tag2", "tag3"])
def moar_tags(unused_session):
def more_tags(unused_session):
print("Some more tags here.")
2 changes: 1 addition & 1 deletion tests/test_toml.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_load_multiple_script_block(tmp_path: Path) -> None:
nox.project.load_toml(filepath)


def test_load_non_recongnised_extension():
def test_load_non_recognised_extension():
msg = "Extension must be .py or .toml, got .txt"
with pytest.raises(ValueError, match=msg):
nox.project.load_toml("some.txt")

0 comments on commit e0868b6

Please sign in to comment.