Change location of stored splinter screenshots to avoid messing up codebase organization.

This commit is contained in:
Dorian 2015-11-17 08:09:53 -05:00
parent 6c731f3009
commit 8da15da900
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -11,7 +11,6 @@ rookeries/static/.webassets-cache/
rookeries/static/css/*.css rookeries/static/css/*.css
rookeries-* rookeries-*
*.db
*.pyc *.pyc
docs/_api/ docs/_api/
@ -20,3 +19,4 @@ docs/_build/
cover/ cover/
.coverage .coverage
.cache/ .cache/
features_test_output/

View File

@ -100,6 +100,7 @@ def features(server_host='localhost', port=7000, couchdb_connection='http://admi
test_command = _prepare_py_test_command( test_command = _prepare_py_test_command(
'tests/functional', verbosity=verbosity, server_hostname=server_host, server_port=port, 'tests/functional', verbosity=verbosity, server_hostname=server_host, server_port=port,
splinter_webdriver=browser, splinter_remote_url=remote_browser_url, splinter_webdriver=browser, splinter_remote_url=remote_browser_url,
splinter_screenshot_dir='features_test_output'
) )
inv.run(test_command, echo=True, pty=True) inv.run(test_command, echo=True, pty=True)