-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a21946
commit ab08e21
Showing
3 changed files
with
6 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[run] | ||
source = atramhasis | ||
omit = atramhasis/scripts/* | ||
|
||
[report] | ||
show_missing = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,8 @@ | ||
from pyramid.response import Response | ||
from pyramid.view import view_config | ||
|
||
from sqlalchemy.exc import DBAPIError | ||
|
||
from .models import ( | ||
DBSession, | ||
MyModel, | ||
) | ||
|
||
|
||
@view_config(route_name='home', renderer='templates/atramhasis.jinja2') | ||
def my_view(request): | ||
try: | ||
one = DBSession.query(MyModel).filter(MyModel.name == 'one').first() | ||
except DBAPIError: | ||
return Response(conn_err_msg, content_type='text/plain', status_int=500) | ||
return {'one': one, 'project': 'atramhasis'} | ||
|
||
conn_err_msg = """\ | ||
Pyramid is having a problem using your SQL database. The problem | ||
might be caused by one of the following things: | ||
1. You may need to run the "initialize_atramhasis_db" script | ||
to initialize your database tables. Check your virtual | ||
environment's "bin" directory for this script and try to run it. | ||
2. Your database server may not be running. Check that the | ||
database server referred to by the "sqlalchemy.url" setting in | ||
your "development.ini" file is running. | ||
After you fix the problem, please restart the Pyramid application to | ||
try it again. | ||
""" | ||
test = 'test 1 2 3' | ||
return {'test': test, 'project': 'atramhasis'} | ||
|