Merge pull request #57 from morucci/issue-30

Rename config.ini add it to .gitignore
This commit is contained in:
Chmouel Boudjnah 2013-04-22 02:49:18 -07:00
commit 2235b00628
4 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@ -16,3 +16,4 @@ cover/
coverage.xml
doc/source/api/
.coverage*
etc/config.ini

View File

@ -19,5 +19,5 @@ index_containers_path = /tmp/swift_filler_containers_index.pkl
[concurrency]
filler_keystone_client_concurrency = 5
filler_swift_client_concurrency = 10
# This is usually bound to the max open files.
# This is usually bound to the max open files.
sync_swift_client_concurrency = 10

View File

@ -22,6 +22,8 @@ import os
CONFIG = None
curdir = os.path.abspath(os.path.dirname(__file__))
INIFILE = os.path.abspath(os.path.join(curdir, '..', 'etc', "config.ini"))
SAMPLE_INIFILE = os.path.abspath(os.path.join(curdir, '..',
'etc', "config.ini-sample"))
class ConfigurationError(Exception):

View File

@ -22,6 +22,7 @@ import unittest2
import mox
import stubout
from swsync import utils
class TestCase(unittest2.TestCase):
@ -30,6 +31,7 @@ class TestCase(unittest2.TestCase):
super(TestCase, self).setUp()
self.mox = mox.Mox()
self.stubs = stubout.StubOutForTesting()
utils.CONFIG = utils.parse_ini(utils.SAMPLE_INIFILE)
def tearDown(self):
self.mox.UnsetStubs()