Merge lp:~yolanda.robla/python-novaclient/havana into lp:~openstack-ubuntu-testing/python-novaclient/havana

Proposed by Yolanda Robla
Status: Merged
Approved by: Chuck Short
Approved revision: 73
Merged at revision: 73
Proposed branch: lp:~yolanda.robla/python-novaclient/havana
Merge into: lp:~openstack-ubuntu-testing/python-novaclient/havana
Diff against target: 59 lines (+22/-1)
4 files modified
debian/changelog (+5/-1)
debian/control (+1/-0)
debian/tests/client (+14/-0)
debian/tests/control (+2/-0)
To merge this branch: bzr merge lp:~yolanda.robla/python-novaclient/havana
Reviewer Review Type Date Requested Status
Chuck Short (community) Needs Fixing
Review via email: mp+168021@code.launchpad.net

Description of the change

Added autopkgtests

To post a comment you must log in.
Revision history for this message
Chuck Short (zulcss) wrote :

Keep the changelog at ubuntu1 please.

review: Needs Fixing
73. By Yolanda Robla

updated changelog

Revision history for this message
Yolanda Robla (yolanda.robla) wrote :

recheck

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-05-29 19:01:34 +0000
3+++ debian/changelog 2013-06-07 13:09:29 +0000
4@@ -1,11 +1,15 @@
5 python-novaclient (1:2.13.0.45.g2925d5b-0ubuntu1) UNRELEASED; urgency=low
6
7+ [ Chuck Short ]
8 * New upstream release.
9 * debian/control: Add python-pbr and python-d2to1 as build depends.
10 * debian/control: Add python-testtools and testrepository as build depends.
11 * debian/rules: Run testr without the need for extra dependencies.
12
13- -- Chuck Short <zulcss@ubuntu.com> Wed, 22 May 2013 07:52:53 -0500
14+ [ Yolanda Robla ]
15+ * debian/tests: added autopkgtests
16+
17+ -- Yolanda <yolanda.robla@canonical.com> Fri, 07 Jun 2013 13:22:31 +0200
18
19 python-novaclient (1:2.13.0-0ubuntu1) raring; urgency=low
20
21
22=== modified file 'debian/control'
23--- debian/control 2013-05-22 13:42:03 +0000
24+++ debian/control 2013-06-07 13:09:29 +0000
25@@ -24,6 +24,7 @@
26 Standards-Version: 3.9.3
27 Vcs-Browser: https://bazaar.launchpad.net/~openstack-ubuntu-packagers/python-novaclient/ubuntu/files
28 Vcs-Bzr: https://bazaar.launchpad.net/~openstack-ubuntu-packagers/python-novaclient/ubuntu/
29+XS-Testsuite: autopkgtest
30
31 Package: python-novaclient
32 Architecture: all
33
34=== added directory 'debian/tests'
35=== added file 'debian/tests/client'
36--- debian/tests/client 1970-01-01 00:00:00 +0000
37+++ debian/tests/client 2013-06-07 13:09:29 +0000
38@@ -0,0 +1,14 @@
39+#!/bin/bash
40+#-------------------------
41+# Testing client utilities
42+#-------------------------
43+set -e
44+
45+HELP_CLIENTS=('nova')
46+for client in "${HELP_CLIENTS[@]}"; do
47+ RET=$($client -h 2>&1 > /dev/null)
48+
49+ if [[ $RET ]]; then
50+ echo "ERROR, ${client} is not running"
51+ fi
52+done
53
54=== added file 'debian/tests/control'
55--- debian/tests/control 1970-01-01 00:00:00 +0000
56+++ debian/tests/control 2013-06-07 13:09:29 +0000
57@@ -0,0 +1,2 @@
58+Tests: client
59+Depends: python-novaclient

Subscribers

People subscribed via source and target branches