Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. lasse@lssteadarch ~/prog/PyPrint (git)-[sils/code] % python3 -m pytest
  2. =============================================================================================== test session starts ===============================================================================================
  3. platform linux -- Python 3.4.3 -- py-1.4.30 -- pytest-2.7.2
  4. rootdir: /home/lasse/prog/PyPrint, inifile: setup.cfg
  5. plugins: spec, cov, xdist
  6. collected 9 items
  7.  
  8. tests/ClosableObjectTest.py ..
  9. tests/ColorPrinterTest.py ..
  10. tests/FilePrinterTest.py ..
  11. tests/NullPrinterTest.py .
  12. tests/PrinterTest.py ..
  13.  
  14. ====================================================================================== 9 passed, 1 warnings in 0.03 seconds =======================================================================================
  15. lasse@lssteadarch ~/prog/PyPrint (git)-[sils/code] % py.test
  16. =============================================================================================== test session starts ===============================================================================================
  17. platform linux -- Python 3.4.3 -- py-1.4.30 -- pytest-2.7.2
  18. rootdir: /home/lasse/prog/PyPrint, inifile: setup.cfg
  19. plugins: spec, cov, xdist
  20. collected 0 items / 5 errors
  21.  
  22. ===================================================================================================== ERRORS ======================================================================================================
  23. __________________________________________________________________________________ ERROR collecting tests/ClosableObjectTest.py ___________________________________________________________________________________
  24. tests/ClosableObjectTest.py:3: in <module>
  25. from pyprint.ClosableObject import ClosableObject, close_objects
  26. E ImportError: No module named 'pyprint'
  27. ___________________________________________________________________________________ ERROR collecting tests/ColorPrinterTest.py ____________________________________________________________________________________
  28. tests/ColorPrinterTest.py:3: in <module>
  29. from pyprint.ColorPrinter import ColorPrinter
  30. E ImportError: No module named 'pyprint'
  31. ____________________________________________________________________________________ ERROR collecting tests/FilePrinterTest.py ____________________________________________________________________________________
  32. tests/FilePrinterTest.py:4: in <module>
  33. from pyprint.FilePrinter import FilePrinter
  34. E ImportError: No module named 'pyprint'
  35. ____________________________________________________________________________________ ERROR collecting tests/NullPrinterTest.py ____________________________________________________________________________________
  36. tests/NullPrinterTest.py:3: in <module>
  37. from pyprint.NullPrinter import NullPrinter
  38. E ImportError: No module named 'pyprint'
  39. ______________________________________________________________________________________ ERROR collecting tests/PrinterTest.py ______________________________________________________________________________________
  40. tests/PrinterTest.py:3: in <module>
  41. from pyprint.Printer import Printer
  42. E ImportError: No module named 'pyprint'
  43. ============================================================================================= 5 error in 0.03 seconds =============================================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement