Project

Profile

Help

Issue #5214

Updated by daviddavis over 4 years ago

When you look at the travis logs, you can't see which dependency versions of dependencies it's running. This makes debugging incredibly difficult when there is a problem with a dependency. difficult. 

 Example output: 

 <pre> 
 TASK [pulp : Create pulp install dir] ****************************************** 
 ok: [127.0.0.1] 

 TASK [pulp : Install packages needed for source install] *********************** 
 ok: [127.0.0.1] 

 TASK [pulp : Allow use system-wide packages] *********************************** 
 skipping: [127.0.0.1] 

 TASK [pulp : Install the psycopg python package] ******************************* 
 changed: [127.0.0.1] 

 TASK [pulp : Install the mysqlclient python package] *************************** 
 skipping: [127.0.0.1] 

 TASK [pulp : Install pulpcore package from source] ***************************** 
 ok: [127.0.0.1] 

 TASK [pulp : Install pulpcore-plugin package from source] ********************** 
 ok: [127.0.0.1] 

 TASK [pulp : Install Pulp plugins via PyPI] ************************************ 
 skipping: [127.0.0.1] => (item={'key': 'pulp-file', 'value': {'app_label': 'file', 'source_dir': '/home/travis/build/pulp/pulp_file'}})  
 skipping: [127.0.0.1] => (item={'key': 'pulp-certguard', 'value': {'app_label': 'certguard', 'source_dir': '/home/travis/build/pulp/pulp-certguard'}})  

 TASK [pulp : Install Pulp plugins from source] ********************************* 
 ok: [127.0.0.1] => (item={'key': 'pulp-file', 'value': {'app_label': 'file', 'source_dir': '/home/travis/build/pulp/pulp_file'}}) 
 ok: [127.0.0.1] => (item={'key': 'pulp-certguard', 'value': {'app_label': 'certguard', 'source_dir': '/home/travis/build/pulp/pulp-certguard'}}) 
 </pre>

Back