diff --git a/.gitignore b/.gitignore index 257064a..6720032 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,6 @@ rookeries/static/.webassets-cache/ rookeries/static/css/*.css rookeries-* -*.db *.pyc docs/_api/ @@ -20,3 +19,4 @@ docs/_build/ cover/ .coverage .cache/ +features_test_output/ diff --git a/tasks/test.py b/tasks/test.py index d4e52d1..7eba51b 100644 --- a/tasks/test.py +++ b/tasks/test.py @@ -100,6 +100,7 @@ def features(server_host='localhost', port=7000, couchdb_connection='http://admi test_command = _prepare_py_test_command( 'tests/functional', verbosity=verbosity, server_hostname=server_host, server_port=port, splinter_webdriver=browser, splinter_remote_url=remote_browser_url, + splinter_screenshot_dir='features_test_output' ) inv.run(test_command, echo=True, pty=True)