Skip to content

Commit d16e618

Browse files
authored
Merge pull request #49 from kianmeng/fix-typos
Fix typos
2 parents 0330635 + 6b764b6 commit d16e618

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Explanation of the terms in the table:
8080
* Absolute Order: whether each group contains all tests between first and last element in the same order as the original list of tests
8181
* Relative Order: whether each test in each group has the same relative order to its neighbours in the group as in the original list of tests
8282

83-
The `duration_based_chunks` algorithm aims to find optimal boundaries for the list of tests and every test group contains all tests between the start and end bounary.
83+
The `duration_based_chunks` algorithm aims to find optimal boundaries for the list of tests and every test group contains all tests between the start and end boundary.
8484
The `least_duration` algorithm walks the list of tests and assigns each test to the group with the smallest current duration.
8585

8686

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ignore =
1414
A003,
1515
# flake8-bugbear
1616
# fastapi recommends to use `Depend()` as an argument default.
17-
# Unfortuantely, exceptions are hardcoded in bugbear.
17+
# Unfortunately, exceptions are hardcoded in bugbear.
1818
# https://github.com/PyCQA/flake8-bugbear/issues/62
1919
B008,
2020

src/pytest_split/ipynb_compatibility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _find_sibiling_ipynb_cells(
4848
ipynb_node_id: str, item_node_ids: "List[str]"
4949
) -> "List[str]":
5050
"""
51-
Returns all sibiling IPyNb cells given an IPyNb cell nodeid.
51+
Returns all sibling IPyNb cells given an IPyNb cell nodeid.
5252
"""
5353
fpath = ipynb_node_id.split("::")[0]
5454
return [item for item in item_node_ids if fpath in item]

0 commit comments

Comments
 (0)