Code review comment for lp:~smoser/curtin/merge-critical

Revision history for this message
Ryan Harper (raharper) wrote :

test_network.py:TrustyTestBasic fails due to missing python?-oauth package not installed.

Fixed with:

% bzr diff curtin/deps/__init__.py
=== modified file 'curtin/deps/__init__.py'
--- curtin/deps/__init__.py 2015-11-17 19:10:04 +0000
+++ curtin/deps/__init__.py 2015-11-18 06:09:41 +0000
@@ -23,6 +23,7 @@
 REQUIRED_IMPORTS = [
     # import string to execute, python2 package, python3 package
     ('import yaml', 'python-yaml', 'python3-yaml'),
+ ('import oauth', 'python-oauthlib', 'python3-oauthlib'),
 ]

 REQUIRED_EXECUTABLES = [

review: Needs Fixing

« Back to merge proposal