We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de10ab7 commit 39e65c4Copy full SHA for 39e65c4
rtox/rtox.py
@@ -67,8 +67,9 @@ def __init__(self,
67
# Load excludes from .gitignore
68
# See https://stackoverflow.com/a/15373763/99834
69
self.rsync_params += \
70
- "--include .git --exclude=`git ls-files " \
71
- "--exclude-standard -oi --directory` "
+ '--include .git --exclude-from="$(git ls-files ' \
+ '--exclude-standard -oi --directory >.git/ignores.tmp && ' \
72
+ 'echo .git/ignores.tmp)" '
73
else:
74
for exclude in ['.tox', '.pytest_cache', '*.pyc', '__pycache__']:
75
self.rsync_params += '--exclude %s ' % exclude
0 commit comments