Merge pull request #29 from yoloseem/typo

Fix typos
This commit is contained in:
Bruno Oliveira
2015-12-09 08:02:42 -02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
If your testing involves C or C++ libraries you might have to deal
with crashing processes. The xdist-plugin provides the ``--boxed`` option
to run each test in a controled subprocess. Here is a basic example::
to run each test in a controlled subprocess. Here is a basic example::
# content of test_module.py

View File

@@ -136,7 +136,7 @@ class EachScheduling:
class LoadScheduling:
"""Implement load scheduling accross nodes.
"""Implement load scheduling across nodes.
This distributes the tests collected across all nodes so each test
is run just once. All nodes collect and submit the test suite and
@@ -233,7 +233,7 @@ class LoadScheduling:
execute.
Called by the ``DSession.slave_slaveready`` hook when it
sucessfully bootstraps a new node.
successfully bootstraps a new node.
"""
assert node not in self.node2pending
self.node2pending[node] = []
@@ -350,7 +350,7 @@ class LoadScheduling:
"""
assert self.collection_is_completed
# Initial distribution already happend, reschedule on all nodes
# Initial distribution already happened, reschedule on all nodes
if self.collection is not None:
for node in self.nodes:
self.check_schedule(node)