diff --git a/common/test/__init__.py b/common/test/__init__.py index 0c8bb33..645ebc5 100644 --- a/common/test/__init__.py +++ b/common/test/__init__.py @@ -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: diff --git a/setup.py b/setup.py index ed35281..f8defa0 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='common', - version='0.1.4', + version='0.1.5', author='Unascribed', author_email='tech@polymathventures.co', description='Code intended to be used across Polymath Ventures repositories.',