Plex plugin to to play various online streams (mostly Latvian).

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. [unittest]
  2. plugins =
  3. unittest2.plugins.debugger
  4. unittest2.plugins.checker
  5. unittest2.plugins.doctestloader
  6. unittest2.plugins.matchregexp
  7. unittest2.plugins.moduleloading
  8. unittest2.plugins.testcoverage
  9. unittest2.plugins.growl
  10. unittest2.plugins.filtertests
  11. unittest2.plugins.junitxml
  12. unittest2.plugins.timed
  13. unittest2.plugins.counttests
  14. unittest2.plugins.logchannels
  15. excluded-plugins =
  16. # 0, 1 or 2 (default is 1)
  17. # quiet, normal or verbose
  18. # can be overriden at command line
  19. verbosity = normal
  20. # true or false
  21. # even if false can be switched on at command line
  22. catch =
  23. buffer =
  24. failfast =
  25. [matchregexp]
  26. always-on = False
  27. full-path = True
  28. [debugger]
  29. always-on = False
  30. errors-only = True
  31. [coverage]
  32. always-on = False
  33. config =
  34. report-html = False
  35. # only used if report-html is false
  36. annotate = False
  37. # defaults to './htmlcov/'
  38. html-directory =
  39. # if unset will output to console
  40. text-file =
  41. branch = False
  42. timid = False
  43. cover-pylib = False
  44. exclude-lines =
  45. # Have to re-enable the standard pragma
  46. pragma: no cover
  47. # Don't complain about missing debug-only code:
  48. def __repr__
  49. if self\.debug
  50. # Don't complain if tests don't hit defensive assertion code:
  51. raise AssertionError
  52. raise NotImplementedError
  53. # Don't complain if non-runnable code isn't run:
  54. if 0:
  55. if __name__ == .__main__.
  56. ignore-errors = False
  57. modules =
  58. [growl]
  59. always-on = False
  60. [doctest]
  61. always-on = False
  62. [module-loading]
  63. always-on = False
  64. [checker]
  65. always-on = False
  66. pep8 = False
  67. pyflakes = True
  68. [junit-xml]
  69. always-on = False
  70. path = junit.xml
  71. [timed]
  72. always-on = True
  73. threshold = 0.01
  74. [count]
  75. always-on = True
  76. enhanced = False