Use pytest instead of py.test per upstream recommendation, #dropthedot

http://blog.pytest.org/2016/whats-new-in-pytest-30/
https://twitter.com/hashtag/dropthedot
This commit is contained in:
Ville Skyttä
2018-07-06 23:08:36 +03:00
parent 137b939a27
commit 663bbd5338
9 changed files with 21 additions and 21 deletions

View File

@@ -18,7 +18,7 @@ class Interrupted(KeyboardInterrupt):
class DSession(object):
"""A py.test plugin which runs a distributed test session
"""A pytest plugin which runs a distributed test session
At the beginning of the test session this creates a NodeManager
instance which creates and starts all nodes. Nodes then emit
@@ -26,7 +26,7 @@ class DSession(object):
methods.
Once a node is started it will automatically start running the
py.test mainloop with some custom hooks. This means a node
pytest mainloop with some custom hooks. This means a node
automatically starts collecting tests. Once tests are collected
it will wait for instructions.
"""