diff --git a/requirements-centos.txt b/requirements-centos.txt index fa7a85ac60..565c4ee019 100644 --- a/requirements-centos.txt +++ b/requirements-centos.txt @@ -1,2 +1,3 @@ pystache beautifulsoup4==4.4.1 +flexmock \ No newline at end of file diff --git a/tardis/test_on_mysql_settings.py b/tardis/test_on_mysql_settings.py new file mode 100644 index 0000000000..2e41641e4a --- /dev/null +++ b/tardis/test_on_mysql_settings.py @@ -0,0 +1,19 @@ +from tardis.test_settings import * + +DATABASES = { + 'default': { + 'ENGINE': "django.db.backends.mysql", + 'NAME': "tardis", + 'USER': "mytardis", + 'PASSWORD': "password", + 'HOST': "localhost", + 'PORT': "3306", + 'STORAGE_ENGINE': "InnoDB", + 'OPTIONS': { + 'init_command': 'SET storage_engine=InnoDB', + 'charset': 'utf8', + 'use_unicode': True, + }, + } +} + diff --git a/tardis/test_on_postgresl_settings.py b/tardis/test_on_postgresl_settings.py new file mode 100644 index 0000000000..cfa9e8b386 --- /dev/null +++ b/tardis/test_on_postgresl_settings.py @@ -0,0 +1,12 @@ +from tardis.test_settings import * + +DATABASES = { + 'default': { + 'ENGINE': "django.db.backends.postgresql_psycopg2", + 'NAME': "tardis", + 'USER': "runner", + 'PASSWORD': "semaphoredb", + 'HOST': "localhost", + 'PORT': "", + } +}