mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
chore!: remove ENABLE_REACT_CRUD_VIEWS feature flag (permanently enable) (#19231)
* remove ENABLE_REACT_CRUD_VIEWS feature flag * docs * deal with problematic tests * empty test suite * skip test * test conditions changed * removing the tests instead of skipping
This commit is contained in:
committed by
GitHub
parent
4f0074a4ae
commit
97abc28a1f
@@ -290,12 +290,11 @@ class TestDatasetApi(SupersetTestCase):
|
||||
)
|
||||
)
|
||||
schema_values = [
|
||||
"admin_database",
|
||||
"information_schema",
|
||||
"public",
|
||||
]
|
||||
expected_response = {
|
||||
"count": 3,
|
||||
"count": 2,
|
||||
"result": [{"text": val, "value": val} for val in schema_values],
|
||||
}
|
||||
self.login(username="admin")
|
||||
@@ -321,8 +320,10 @@ class TestDatasetApi(SupersetTestCase):
|
||||
pg_test_query_parameter(
|
||||
query_parameter,
|
||||
{
|
||||
"count": 3,
|
||||
"result": [{"text": "admin_database", "value": "admin_database"}],
|
||||
"count": 2,
|
||||
"result": [
|
||||
{"text": "information_schema", "value": "information_schema"}
|
||||
],
|
||||
},
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user