mirror of
https://github.com/apache/superset.git
synced 2026-04-18 07:35:09 +00:00
* Make schema name configurable
Fixing unit tests
Fix table quoting
Mypy
Split tests out for sqlite
Grant more permissions for mysql user
Postgres doesn't support if not exists
More logging
Commit for table creation
Priviliges for postgres
Update tests
Resolve comments
Lint
No limits for the CTA queries if configures
* CTA -> CTAS and dict -> {}
* Move database creation to the .travis file
* Black
* Move tweaks to travis db setup
* Remove left over version
* Address comments
* Quote table names in the CTAS queries
* Pass tmp_schema_name for the query execution
* Rebase alembic migration
* Switch to python3 mypy
* SQLLAB_CTA_SCHEMA_NAME_FUNC -> SQLLAB_CTAS_SCHEMA_NAME_FUNC
* Black
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
from copy import copy
|
|
|
|
from superset.config import * # type: ignore
|
|
|
|
AUTH_USER_REGISTRATION_ROLE = "alpha"
|
|
SQLALCHEMY_DATABASE_URI = "sqlite:///" + os.path.join(DATA_DIR, "unittests.db")
|
|
DEBUG = True
|
|
SUPERSET_WEBSERVER_PORT = 8081
|
|
|
|
# Allowing SQLALCHEMY_DATABASE_URI to be defined as an env var for
|
|
# continuous integration
|
|
if "SUPERSET__SQLALCHEMY_DATABASE_URI" in os.environ:
|
|
SQLALCHEMY_DATABASE_URI = os.environ["SUPERSET__SQLALCHEMY_DATABASE_URI"]
|
|
|
|
SQL_MAX_ROW = 666
|
|
SQLLAB_CTAS_NO_LIMIT = True # SQL_MAX_ROW will not take affect for the CTA queries
|
|
FEATURE_FLAGS = {"foo": "bar", "KV_STORE": True, "SHARE_QUERIES_VIA_KV_STORE": True}
|
|
|
|
|
|
def GET_FEATURE_FLAGS_FUNC(ff):
|
|
ff_copy = copy(ff)
|
|
ff_copy["super"] = "set"
|
|
return ff_copy
|
|
|
|
|
|
TESTING = True
|
|
WTF_CSRF_ENABLED = False
|
|
PUBLIC_ROLE_LIKE_GAMMA = True
|
|
AUTH_ROLE_PUBLIC = "Public"
|
|
EMAIL_NOTIFICATIONS = False
|
|
|
|
CACHE_CONFIG = {"CACHE_TYPE": "simple"}
|
|
|
|
|
|
class CeleryConfig(object):
|
|
BROKER_URL = "redis://localhost"
|
|
CELERY_IMPORTS = ("superset.sql_lab",)
|
|
CELERY_ANNOTATIONS = {"sql_lab.add": {"rate_limit": "10/s"}}
|
|
CONCURRENCY = 1
|
|
|
|
|
|
CELERY_CONFIG = CeleryConfig
|