Skip to content

Commit

Permalink
Log which fixture is being loaded using INFO level.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkrimer committed Mar 26, 2016
1 parent acd5a83 commit c321500
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def load_fixtures(self):

for fixture in getattr(self, 'fixtures', []):
fixture_path = path.join(path.dirname(self.app.root_path), fixture)
self.logger.debug('Loading fixture: %s', fixture_path)
self.logger.info('Loading fixture: %s', fixture_path)
with open(fixture_path) as f:
fixtures = yaml.load(f.read())
for fixture in fixtures:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='common',
version='0.1.4',
version='0.1.5',
author='Unascribed',
author_email='[email protected]',
description='Code intended to be used across Polymath Ventures repositories.',
Expand Down

0 comments on commit c321500

Please sign in to comment.