Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #839

Merged
merged 1 commit into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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")
Loading