Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fun-apps / envs / test.py
Size: Mime:
# test settings common to lms and cms
import os
import tempfile

############# Disable useless logging
import logging
logging.getLogger("audit").setLevel(logging.WARN)
logging.getLogger("django_comment_client.utils").setLevel(logging.WARN)
logging.getLogger('edx.celery.task').setLevel(logging.ERROR)
logging.getLogger("factory").setLevel(logging.WARN)
logging.getLogger("googleapiclient.discovery").setLevel(logging.ERROR)
logging.getLogger('instructor_task.api_helper').setLevel(logging.ERROR)
logging.getLogger('instructor_task.tasks_helper').setLevel(logging.ERROR)
logging.getLogger("raven.contrib.django.client.DjangoClient").setLevel(logging.WARN)
logging.getLogger('util.models').setLevel(logging.CRITICAL)
logging.getLogger('xmodule.modulestore.django').setLevel(logging.ERROR)

def nose_args(repo_root, service):
    return [
        '--id-file', repo_root / '.testids' / service / 'noseids',
        '--xunit-file', repo_root / 'reports' / service / 'nosetests.xml',
        '--nologcapture',
    ]

def databases(test_root):
    return {
        'default': {
            'ENGINE': 'django.db.backends.sqlite3',
            'NAME': test_root / 'db' / 'fun.db'
        },
    }

mongo_port_num = int(os.environ.get('EDXAPP_TEST_MONGO_PORT', '27017'))
mongo_host = os.environ.get('EDXAPP_TEST_MONGO_HOST', 'localhost')
def contentstore(host, port):
    return {
        'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
        'DOC_STORE_CONFIG': {
            'host': host,
            'db': 'xcontent',
            'port': port,
        }
    }

password_hashers = (
    'django.contrib.auth.hashers.SHA1PasswordHasher',
    'django.contrib.auth.hashers.MD5PasswordHasher',
)

caches = {
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_loc_mem_cache',
        'KEY_FUNCTION': 'util.memcache.safe_key',
    },

    'general': {
        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
        'KEY_PREFIX': 'general',
        'VERSION': 4,
        'KEY_FUNCTION': 'util.memcache.safe_key',
    },

    'mongo_metadata_inheritance': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': os.path.join(tempfile.gettempdir(), 'mongo_metadata_inheritance'),
        'TIMEOUT': 300,
        'KEY_FUNCTION': 'util.memcache.safe_key',
    },
    'loc_cache': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_location_mem_cache',
    },

}

# Disable access to videofront in tests
VIDEOFRONT_URL = 'http://video'