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 misspelling (change "parallell" to "parallel") #481

Merged
merged 2 commits into from
Aug 13, 2020
Merged
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
8 changes: 4 additions & 4 deletions tests/runner/test_parallel_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_memory_data_set_input(self, is_async, fan_out_fan_in):


@pytest.mark.skipif(
sys.platform.startswith("win"), reason="Due to bug in parallell runner"
sys.platform.startswith("win"), reason="Due to bug in parallel runner"
)
class TestMaxWorkers:
@pytest.mark.parametrize("is_async", [False, True])
Expand Down Expand Up @@ -195,7 +195,7 @@ def test_max_worker_windows(self, mocker):


@pytest.mark.skipif(
sys.platform.startswith("win"), reason="Due to bug in parallell runner"
sys.platform.startswith("win"), reason="Due to bug in parallel runner"
)
@pytest.mark.parametrize("is_async", [False, True])
class TestInvalidParallelRunner:
Expand Down Expand Up @@ -280,7 +280,7 @@ def decorated_fan_out_fan_in():


@pytest.mark.skipif(
sys.platform.startswith("win"), reason="Due to bug in parallell runner"
sys.platform.startswith("win"), reason="Due to bug in parallel runner"
)
@pytest.mark.parametrize("is_async", [False, True])
class TestParallelRunnerDecorator:
Expand Down Expand Up @@ -330,7 +330,7 @@ def _describe(self) -> Dict[str, Any]:


@pytest.mark.skipif(
sys.platform.startswith("win"), reason="Due to bug in parallell runner"
sys.platform.startswith("win"), reason="Due to bug in parallel runner"
)
@pytest.mark.parametrize("is_async", [False, True])
class TestParallelRunnerRelease:
Expand Down