diff --git a/example/boxed.txt b/example/boxed.txt index af3b025..00cec2f 100644 --- a/example/boxed.txt +++ b/example/boxed.txt @@ -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 diff --git a/xdist/dsession.py b/xdist/dsession.py index 25b7405..451a308 100644 --- a/xdist/dsession.py +++ b/xdist/dsession.py @@ -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)