diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 98ed09de9..000000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index d2d6f360b..4c2525cd0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -*.py[cod] +.py[cod] # C extensions *.so @@ -33,3 +33,6 @@ nosetests.xml .mr.developer.cfg .project .pydevproject + +# DS_STORE +.DS_Store diff --git a/taskflow/.DS_Store b/taskflow/.DS_Store deleted file mode 100644 index 5b535fcd0..000000000 Binary files a/taskflow/.DS_Store and /dev/null differ diff --git a/taskflow/__init__.pyc b/taskflow/__init__.pyc new file mode 100644 index 000000000..29e6fa0b3 Binary files /dev/null and b/taskflow/__init__.pyc differ diff --git a/taskflow/common/__init__.pyc b/taskflow/common/__init__.pyc new file mode 100644 index 000000000..3746bb7c5 Binary files /dev/null and b/taskflow/common/__init__.pyc differ diff --git a/taskflow/common/config.pyc b/taskflow/common/config.pyc new file mode 100644 index 000000000..519ce047e Binary files /dev/null and b/taskflow/common/config.pyc differ diff --git a/taskflow/db/.DS_Store b/taskflow/db/.DS_Store deleted file mode 100644 index 77bbe474d..000000000 Binary files a/taskflow/db/.DS_Store and /dev/null differ diff --git a/taskflow/db/__init__.pyc b/taskflow/db/__init__.pyc new file mode 100644 index 000000000..36d6956d8 Binary files /dev/null and b/taskflow/db/__init__.pyc differ diff --git a/taskflow/db/api.pyc b/taskflow/db/api.pyc new file mode 100644 index 000000000..69215f248 Binary files /dev/null and b/taskflow/db/api.pyc differ diff --git a/taskflow/db/sqlalchemy/.DS_Store b/taskflow/db/sqlalchemy/.DS_Store deleted file mode 100644 index 5008ddfcf..000000000 Binary files a/taskflow/db/sqlalchemy/.DS_Store and /dev/null differ diff --git a/taskflow/db/sqlalchemy/__init__.pyc b/taskflow/db/sqlalchemy/__init__.pyc new file mode 100644 index 000000000..e42705424 Binary files /dev/null and b/taskflow/db/sqlalchemy/__init__.pyc differ diff --git a/taskflow/db/sqlalchemy/api.pyc b/taskflow/db/sqlalchemy/api.pyc new file mode 100644 index 000000000..631550deb Binary files /dev/null and b/taskflow/db/sqlalchemy/api.pyc differ diff --git a/taskflow/db/sqlalchemy/models.pyc b/taskflow/db/sqlalchemy/models.pyc new file mode 100644 index 000000000..61d49d909 Binary files /dev/null and b/taskflow/db/sqlalchemy/models.pyc differ diff --git a/taskflow/openstack/.DS_Store b/taskflow/openstack/.DS_Store deleted file mode 100644 index 100e8de83..000000000 Binary files a/taskflow/openstack/.DS_Store and /dev/null differ diff --git a/taskflow/openstack/common/.DS_Store b/taskflow/openstack/common/.DS_Store deleted file mode 100644 index 5008ddfcf..000000000 Binary files a/taskflow/openstack/common/.DS_Store and /dev/null differ diff --git a/taskflow/states.pyc b/taskflow/states.pyc new file mode 100644 index 000000000..fef4c4896 Binary files /dev/null and b/taskflow/states.pyc differ diff --git a/taskflow/tests/.DS_Store b/taskflow/tests/.DS_Store deleted file mode 100644 index cfcf9eb13..000000000 Binary files a/taskflow/tests/.DS_Store and /dev/null differ diff --git a/taskflow/tests/unit/test_db_api.py b/taskflow/tests/unit/test_db_api.py index d044e5f7a..f391f34cc 100644 --- a/taskflow/tests/unit/test_db_api.py +++ b/taskflow/tests/unit/test_db_api.py @@ -13,7 +13,7 @@ from taskflow.db.sqlalchemy.session import get_session from taskflow.openstack.common import exception db_api.configure() -db_filepath = cfg.CONF.get('sql_connection') +db_api.SQL_CONNECTION = 'sqlite:///test.db' def setUpModule(): if not path.isfile('test.db'): diff --git a/taskflow/utils.pyc b/taskflow/utils.pyc new file mode 100644 index 000000000..d8d49aa95 Binary files /dev/null and b/taskflow/utils.pyc differ