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
====================================================================== | |
ERROR: test_user_model (test_models.TestUserMode) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/home/brian/Code/printwithme/tests/test_models.py", line 16, in test_user_model | |
assert not User.query.all() | |
AttributeError: 'NoneType' object has no attribute 'all' |
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
============================= test session starts ============================== | |
platform linux2 -- Python 2.7.3 -- pytest-2.4.2 | |
collected 16 items | |
tests/test_ccj_v1_0.py .. | |
tests/test_dpc_api.py .... | |
tests/test_dpc_model.py .... | |
tests/test_pgsql_installation.py F | |
tests/test_scraper.py ... | |
tests/test_summarize_daily_population.py .. |
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
{% extends "_base.html" %} | |
{% from 'macros.html' import inventory with context %} | |
{% block preview %}{% endblock preview %} | |
{% block css %} | |
{{ super() }} | |
<link rel="stylesheet" type="text/css" href="css/simple.css" /> | |
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> |