コード例 #1
0
ファイル: test_config.py プロジェクト: brianz/hackathon
def test_production_config():
    """Production config."""
    app = create_app(ProdConfig)
    assert app.config['ENV'] == 'prod'
    assert app.config['DEBUG'] is False
    assert app.config['DEBUG_TB_ENABLED'] is False
    assert app.config['ASSETS_DEBUG'] is False
コード例 #2
0
ファイル: conftest.py プロジェクト: brianz/hackathon
def app():
    """An application for the tests."""
    _app = create_app(TestConfig)
    ctx = _app.test_request_context()
    ctx.push()

    yield _app

    ctx.pop()
コード例 #3
0
ファイル: manage.py プロジェクト: brianz/hackathon
from subprocess import call

from flask_migrate import MigrateCommand
from flask_script import Command, Manager, Option, Server, Shell
from flask_script.commands import Clean, ShowUrls

from cc_sales_leads.app import create_app
from cc_sales_leads.database import db
from cc_sales_leads.settings import DevConfig, ProdConfig
from cc_sales_leads.user.models import User

CONFIG = ProdConfig if os.environ.get('CC_SALES_LEADS_ENV') == 'prod' else DevConfig
HERE = os.path.abspath(os.path.dirname(__file__))
TEST_PATH = os.path.join(HERE, 'tests')

app = create_app(CONFIG)
manager = Manager(app)


def _make_context():
    """Return context dict for a shell session so you can access app, db, and the User model by default."""
    return {'app': app, 'db': db, 'User': User}


@manager.command
def test():
    """Run the tests."""
    import pytest
    exit_code = pytest.main([TEST_PATH, '--verbose'])
    return exit_code
コード例 #4
0
ファイル: test_config.py プロジェクト: brianz/hackathon
def test_dev_config():
    """Development config."""
    app = create_app(DevConfig)
    assert app.config['ENV'] == 'dev'
    assert app.config['DEBUG'] is True
    assert app.config['ASSETS_DEBUG'] is True