Skip to content

Instantly share code, notes, and snippets.

@clayg
Created June 17, 2014 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clayg/858efb1f472d72a472cc to your computer and use it in GitHub Desktop.
Save clayg/858efb1f472d72a472cc to your computer and use it in GitHub Desktop.
diff --git a/test/probe/test_replication_servers_working.py b/test/probe/test_replication_servers_working.py
index 8c44442..f08c115 100644
--- a/test/probe/test_replication_servers_working.py
+++ b/test/probe/test_replication_servers_working.py
@@ -127,7 +127,10 @@ class TestReplicatorFunctions(TestCase):
for files in files_list[num]:
if not files.endswith('.pending'):
test_node_files_list.append(files)
- test_node_dir_list = dir_list[num]
+ test_node_dir_list = []
+ for d in dir_list[num]:
+ if not d.startswith('tmp'):
+ test_node_dir_list.append(d)
# Run all replicators
try:
Manager(['object-replicator', 'container-replicator',
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment