Guest User

Untitled

a guest
Oct 17th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. def _find_specs_in_suggested_locations(self, suggested_locations):
  2. for suggested_location in suggested_locations:
  3. normalized_suggested_location = self._normalize_suggested_location(suggested_location)
  4.  
  5. if normalized_suggested_location.endswith('spec.py'):
  6. self.spec_locations.append(normalized_suggested_location)
  7. else:
  8. self._find_specs_in_directory(normalized_suggested_location)
Add Comment
Please, Sign In to add comment