Ubuntu Pastebin

Paste from rr at Thu, 3 Nov 2016 13:15:38 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
% git log -p -1
commit 21d2ef1ea0606d2d7faa4faec16d5f55286fd461 (HEAD -> coverage)
Author: Ryan Harper <ryan.harper@canonical.com>
Date:   Thu Nov 3 08:06:22 2016 -0500

    add coverage test req

diff --git a/packages/bddeb b/packages/bddeb
index abb7b60..b580084 100755
--- a/packages/bddeb
+++ b/packages/bddeb
@@ -46,6 +46,7 @@ STD_NAMED_PACKAGES = [
 NONSTD_NAMED_PACKAGES = {
     'argparse': ('python-argparse', None),
     'contextlib2': ('python-contextlib2', None),
+    'coverage': ('python-coverage', 'python3-coverage'),
     'cheetah': ('python-cheetah', None),
     'pyserial': ('python-serial', 'python3-serial'),
     'pyyaml': ('python-yaml', 'python3-yaml'),
diff --git a/test-requirements.txt b/test-requirements.txt
index 6bf3894..0e7fc8f 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -3,6 +3,7 @@ httpretty>=0.7.1
 mock
 nose
 unittest2
+coverage
 
 # Only needed if you want to know the test times
 # nose-timer
Download as text