Advertisement
Guest User

Untitled

a guest
Jul 17th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. [buildout]
  2. extends = base.cfg
  3. develop = .
  4.  
  5. [versions]
  6. # Unset versions of packages you want to develop
  7. schooltool.quiz =
  8. Sphinx = 1.1.3
  9. docutils = 0.7
  10.  
  11. [package]
  12. eggs = schooltool.quiz
  13.  
  14. [test]
  15. eggs = schooltool.quiz [test]
  16. selenium.default = linux_chrome
  17. selenium.linux_chrome.binary = "/usr/bin/chromedriver"
  18. selenium.linux_chrome.capabilities.chrome.binary = "/usr/lib/chromium-browser/chromium-browser"
  19. selenium.implicit_wait = 1
  20.  
  21. [test-headless]
  22. <= test
  23. defaults = ['--tests-pattern', '^stests$', '-v', '--auto-color',
  24. '--selenium-headless-backend=xvfb',
  25. '--selenium-screenshots-dir=screenshots',
  26. '--selenium-overwrite-screenshots',
  27. ]
  28.  
  29. [buildout]
  30. parts += test-headless
  31.  
  32. # To run selenium tests:
  33. # - Download standalone selenium server from
  34. # http://code.google.com/p/selenium/downloads/list
  35. # - Start the server: "java -jar selenium-server-standalone-2.7.0.jar"
  36. # - Uncomment the lines below:
  37. #
  38. #selenium.default = html_unit
  39. #selenium.html_unit.web_driver = remote
  40. #selenium.html_unit.capabilities = HTMLUNITWITHJS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement