Guest User

Untitled

a guest
Apr 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. features
  2. features>steps
  3. features>steps>example.py
  4. features>environment.pys
  5. features>example.feature
  6.  
  7. ModuleNotFoundError: No module named 'pynput'
  8.  
  9. from pybuilder.core import init, use_plugin, task
  10. from subprocess import call
  11.  
  12. use_plugin("python.core")
  13. use_plugin("python.install_dependencies")
  14.  
  15. default_task = "behave"
  16.  
  17. @init
  18. def initialize(project):
  19. project.depends_on("pynput")
  20.  
  21. @task
  22. def behave(project):
  23. call(["behave"])
  24.  
  25. src
  26. src > test
  27. src > test > python
  28. src > test > python > example.py
  29. src > test > features
  30. src > test > features > example.feature
Add Comment
Please, Sign In to add comment