docs fixed

This commit is contained in:
Anatoly Bubenkov
2013-12-06 10:19:18 +01:00
parent 152f965a70
commit bcf1c85f44
2 changed files with 10 additions and 5 deletions

View File

@@ -122,6 +122,11 @@ py.test references tests as a fully qualified python
module path. **You will otherwise get strange errors** module path. **You will otherwise get strange errors**
during setup of the remote side. during setup of the remote side.
You can specify multiple ``--rsyncignore`` glob-patterns
to be ignored when file are sent to the remote side.
There are also internal ignores: .*, *.pyc, *.pyo, *~
Sending tests to remote Socket Servers Sending tests to remote Socket Servers
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

View File

@@ -35,7 +35,7 @@ def pytest_addoption(parser):
parser.addini('rsyncdirs', 'list of (relative) paths to be rsynced for' parser.addini('rsyncdirs', 'list of (relative) paths to be rsynced for'
' remote distributed testing.', type="pathlist") ' remote distributed testing.', type="pathlist")
parser.addini('rsyncignore', 'list of (relative) paths to be ignored ' parser.addini('rsyncignore', 'list of (relative) glob-style paths to be ignored '
'for rsyncing.', type="pathlist") 'for rsyncing.', type="pathlist")
parser.addini("looponfailroots", type="pathlist", parser.addini("looponfailroots", type="pathlist",
help="directories to check for changes", default=[py.path.local()]) help="directories to check for changes", default=[py.path.local()])