Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
10af2485
Commit
10af2485
authored
Sep 26, 2018
by
PJ Janse van Rensburg
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into bootstrap4
parents
c079e17e
6a0177fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
__init__.py
flask_admin/tests/geoa/__init__.py
+1
-0
__init__.py
flask_admin/tests/sqla/__init__.py
+2
-0
No files found.
flask_admin/tests/geoa/__init__.py
View file @
10af2485
...
...
@@ -9,6 +9,7 @@ def setup():
app
.
config
[
'CSRF_ENABLED'
]
=
False
app
.
config
[
'SQLALCHEMY_DATABASE_URI'
]
=
'postgresql://localhost/flask_admin_test'
app
.
config
[
'SQLALCHEMY_ECHO'
]
=
True
app
.
config
[
'SQLALCHEMY_TRACK_MODIFICATIONS'
]
=
False
db
=
SQLAlchemy
(
app
)
admin
=
Admin
(
app
)
...
...
flask_admin/tests/sqla/__init__.py
View file @
10af2485
...
...
@@ -9,6 +9,7 @@ def setup():
app
.
config
[
'CSRF_ENABLED'
]
=
False
app
.
config
[
'SQLALCHEMY_DATABASE_URI'
]
=
'sqlite:///'
app
.
config
[
'SQLALCHEMY_ECHO'
]
=
True
app
.
config
[
'SQLALCHEMY_TRACK_MODIFICATIONS'
]
=
False
db
=
SQLAlchemy
(
app
)
admin
=
Admin
(
app
)
...
...
@@ -22,6 +23,7 @@ def setup_postgres():
app
.
config
[
'CSRF_ENABLED'
]
=
False
app
.
config
[
'SQLALCHEMY_DATABASE_URI'
]
=
'postgresql://localhost/flask_admin_test'
app
.
config
[
'SQLALCHEMY_ECHO'
]
=
True
app
.
config
[
'SQLALCHEMY_TRACK_MODIFICATIONS'
]
=
False
db
=
SQLAlchemy
(
app
)
admin
=
Admin
(
app
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment