SlideShare a Scribd company logo
1 of 34
Download to read offline
Land your first Neutron patch 
Rossella Sblendido <rsblendido@suse.com>
2 
Neutron...
3 
After this talk...
Getting familiar with Neutron
5 
What's Neutron? 
•Neutron is an OpenStack project to provide “networking as a service” between interface devices (e.g., vNICs) managed by other OpenStack services (e.g., Nova) 
•Provides a powerful API to define the network connectivity
6 
Modular architecture 
•Neutron-server: expose the API 
•Plugin: custom back-end implementation of the Networking API 
•Several agents: 
‒plug-in agent (L2 agent): runs on each hypervisor to perform local vSwitch configuration 
‒dhcp agent: Provides DHCP services to tenant networks 
‒l3 agent: Provides L3/NAT forwarding to provide external network access for VMs on tenant network
7 
I want to know more... 
•Read the networking admin guide here 
•Explore the code: 
git clone git@github.com:openstack/neutron.git 
Tip: PyCharm can make your life easier 
‒Navigate to Class Ctrl+N 
‒Navigate to File Ctrl+Shift+N 
‒Navigate to Declaration Ctrl+B
8 
Use Devstack to crack it open 
• Script to build a complete stack 
• To set it up only few steps: 
‒ git clone https://github.com/openstack-dev/devstack.git 
‒ cd devstack; ./stack.sh 
• Resume the screen session to check what's going on: screen -x 
• You can use pdb to set breakpoints
9 
Devstack – Config file tips 
disable_service n-net 
enable_service q-svc 
enable_service q-agt 
enable_service q-dhcp 
enable_service q-l3 
enable_service q-meta 
DATABASE_PASSWORD=admin 
RABBIT_PASSWORD=admin 
SERVICE_TOKEN=admin 
SERVICE_PASSWORD=admin 
ADMIN_PASSWORD=admin 
INSTALL_TESTONLY_PACKAGES=True
10 
Inspecting the networking configuration 
•ip link 
•ip netns list 
•ip netns exec <namespace> <command> 
•ovs-vsctl show 
•iptables -S
11 
Questions... Where to ask? 
• IRC freenode #openstack-neutron 
• openstack - general questions 
• openstack-dev - dev related questions 
• openstack-operators 
Follow the mailing list etiquette
Writing your first patchFix a bug or add a new feature
13 
Launchpad launchpad.net/neutron
14 
Launchpad 
• Bugs 
• Blueprints 
• Milestones/Releases 
• It handles authentication for other websites (eg. Gerrit)
15 
Bugs 
• Look for "low-hanging-fruit" tag 
• Pick one and assign it to you
16 
How to fix a bug 
• Try to reproduce it 
• Debug the issue (add log statement or you can use a debugger if you are on Devstack) 
• Write a patch 
• Test it 
• Write a unit test if that's appropriate to avoid regressions
17 
Blueprint + Spec workflow 
• Register blueprint in Launchpad 
• Upload a design specification to Gerrit to specs/<release> folder in neutron-specs 
• Use specs/template.srt from Neutron specs repo 
• Specs follow the same Gerrit workflow as patches 
• Project drivers will approve blueprint
Testing your patch
19 
Style check 
• Based on flake8 and hacking
20 
How to run unittests 
• run_tests.sh script 
• tox 
Run one test: 
•./run_tests.sh neutron.tests.unit.test_api_v2.JSONV2TestCase 
or 
•tox -e py27 neutron.tests.unit.test_api_v2.JSONV2TestCase
21 
Debugging unitests 
•./run_tests.sh -d [test module path] 
•tox -e venv -- python -m testtools.run [test module path] 
See here for more info
Submitting your first patch
23 
Git 
Git is the tool used for managing the code 
‒ git clone (clone Neutron repo) 
‒ git checkout -b topic-branch 
‒ apply your changes 
‒ git add 
‒ git commit 
‒ git review -> you need to install it 
‒ git commit --amend -> create a new patch Set 
‒ git review
24 
Gerrit review.openstack.org
25 
Gerrit 
• You can review other people code, your code get reviewed 
• Automatic Gatekeeper
26 
Gerrit – Code-Review and Workflow 
Code-Review 
‒+1, -1 everybody 
‒+2, -2 core reviewers 
Workflow 
‒Workflow +1 , only core reviewers (usually after it got 2x +2) 
‒Workflow -1, WIP
27 
Gerrit – Verified 
• Every patch is tested and gets a 
‒+1 Verified 
‒-1 Failed 
• Style checker + unit tests + functional tests + integration tests (Tempest) + upgrade tests (Grenade) 
• Test are run by the OpenStack CI and for some project by third party CI 
• Logs are accessible, you can check why a test failed
Get your patch merged
29 
Code - Best practices 
• Check spelling 
• Add comments if needed 
• Run flake8 and test before you submit 
• Create small patches 
• Do one logical change per patch. Don't mixup different fixes 
• Try to avoid dependent patches if possible -> rebase hell
30 
Commit messages – best practices 
• Explain the how and the why, not the what 
• Use special tags in commit messages (i.e. "Closes-Bug: #1234567") , they are matched by automation scripts 
• For needed documentation changes, use DocImpact flag 
• See here for more info
31 
Getting reviews - Best practices 
• Be polite 
• Try to be specific regarding what you will address and what not. 
• Reply 'Done' if you are gonna change the patch according to the comment. 
• Explain why you are not gonna address a comment 
• The best way to get reviews is to be involved
32 
Reviewing - Best practices 
• Be polite 
• Ask questions 
• Show examples when you give some suggestion 
• If you give a "-1" make sure to check if the submitter answered. A '-1' can block a patch 
• Quality vs quantity 
• It takes time to review but you will learn a lot!
Thank you. 
33 
Questions?
Unpublished Work of SUSE. All Rights Reserved. 
This work is an unpublished work and contains confidential, proprietary and trade secret information of SUSE. Access to this work is restricted to SUSE employees who have a need to know to perform tasks within the scope of their assignments. No part of this work may be practiced, performed, copied, distributed, revised, modified, translated, abridged, condensed, expanded, collected, or adapted without the prior written consent of SUSE. Any use or exploitation of this work without authorization could subject the perpetrator to criminal and civil liability. 
General Disclaimer 
This document is not to be construed as a promise by any participating company to develop, deliver, or market a product. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. SUSE makes no representations or warranties with respect to the contents of this document, and specifically disclaims any express or implied warranties of merchantability or fitness for any particular purpose. The development, release, and timing of features or functionality described for SUSE products remains at the sole discretion of SUSE. Further, SUSE reserves the right to revise this document and to make changes to its content, at any time, without obligation to notify any person or entity of such revisions or changes. All SUSE marks referenced in this presentation are trademarks or registered trademarks of Novell, Inc. in the United States and other countries. All third-party trademarks are the property of their respective owners.

More Related Content

What's hot

2013 10-28 php ug presentation - ci using phing and hudson
2013 10-28 php ug presentation - ci using phing and hudson2013 10-28 php ug presentation - ci using phing and hudson
2013 10-28 php ug presentation - ci using phing and hudson
Shreeniwas Iyer
 
Into The Box 2018 | Assert control over your legacy applications
Into The Box 2018 | Assert control over your legacy applicationsInto The Box 2018 | Assert control over your legacy applications
Into The Box 2018 | Assert control over your legacy applications
Ortus Solutions, Corp
 

What's hot (20)

2013 10-28 php ug presentation - ci using phing and hudson
2013 10-28 php ug presentation - ci using phing and hudson2013 10-28 php ug presentation - ci using phing and hudson
2013 10-28 php ug presentation - ci using phing and hudson
 
Developing NuGet
Developing NuGetDeveloping NuGet
Developing NuGet
 
Jenkins Meetup Pune
Jenkins Meetup PuneJenkins Meetup Pune
Jenkins Meetup Pune
 
How and what to unit test
How and what to unit testHow and what to unit test
How and what to unit test
 
Into The Box 2018 | Assert control over your legacy applications
Into The Box 2018 | Assert control over your legacy applicationsInto The Box 2018 | Assert control over your legacy applications
Into The Box 2018 | Assert control over your legacy applications
 
Docker
DockerDocker
Docker
 
Intro to NuGet
Intro to NuGetIntro to NuGet
Intro to NuGet
 
Unit Test + Functional Programming = Love
Unit Test + Functional Programming = LoveUnit Test + Functional Programming = Love
Unit Test + Functional Programming = Love
 
Test driving QML
Test driving QMLTest driving QML
Test driving QML
 
Nunit
NunitNunit
Nunit
 
Agile Programming Systems # TDD intro
Agile Programming Systems # TDD introAgile Programming Systems # TDD intro
Agile Programming Systems # TDD intro
 
Unit testing (eng)
Unit testing (eng)Unit testing (eng)
Unit testing (eng)
 
Apereo OAE development and release process
Apereo OAE development and release processApereo OAE development and release process
Apereo OAE development and release process
 
LCA13: Upstreaming 101
LCA13: Upstreaming 101LCA13: Upstreaming 101
LCA13: Upstreaming 101
 
Integration Group - Robot Framework
Integration Group - Robot Framework Integration Group - Robot Framework
Integration Group - Robot Framework
 
Source Control with Domino Designer 8.5.3 and Git (DanNotes, November 28, 2012)
Source Control with Domino Designer 8.5.3 and Git (DanNotes, November 28, 2012)Source Control with Domino Designer 8.5.3 and Git (DanNotes, November 28, 2012)
Source Control with Domino Designer 8.5.3 and Git (DanNotes, November 28, 2012)
 
Game Programming 00 - Exams
Game Programming 00 - ExamsGame Programming 00 - Exams
Game Programming 00 - Exams
 
PHPUnit - Unit testing
PHPUnit - Unit testingPHPUnit - Unit testing
PHPUnit - Unit testing
 
Selenium TestNG
Selenium TestNGSelenium TestNG
Selenium TestNG
 
Angular Multi-env Setup
Angular Multi-env SetupAngular Multi-env Setup
Angular Multi-env Setup
 

Similar to 2014 land your-first_patch_neutron

Similar to 2014 land your-first_patch_neutron (20)

InteropWG Intro & Vertical Programs (May. 2017)
InteropWG Intro & Vertical Programs (May. 2017)InteropWG Intro & Vertical Programs (May. 2017)
InteropWG Intro & Vertical Programs (May. 2017)
 
Test parallelization using Jenkins
Test parallelization using JenkinsTest parallelization using Jenkins
Test parallelization using Jenkins
 
DefCore: The Interoperability Standard for OpenStack
DefCore: The Interoperability Standard for OpenStackDefCore: The Interoperability Standard for OpenStack
DefCore: The Interoperability Standard for OpenStack
 
From silex to symfony and viceversa
From silex to symfony and viceversaFrom silex to symfony and viceversa
From silex to symfony and viceversa
 
Contributing to OpenStack
Contributing to OpenStackContributing to OpenStack
Contributing to OpenStack
 
A la découverte des google/test (aka gtest)
A la découverte des google/test (aka gtest)A la découverte des google/test (aka gtest)
A la découverte des google/test (aka gtest)
 
Deploying at will - SEI
 Deploying at will - SEI Deploying at will - SEI
Deploying at will - SEI
 
Design For Testability
Design For TestabilityDesign For Testability
Design For Testability
 
Automation for Anyone at Nutanix NEXT 2017 US
Automation for Anyone at Nutanix NEXT 2017 USAutomation for Anyone at Nutanix NEXT 2017 US
Automation for Anyone at Nutanix NEXT 2017 US
 
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit EuropeAutomation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
Automation: The Good, The Bad and The Ugly with DevOpsGuys - AppD Summit Europe
 
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
DevOpsGuys - DevOps Automation - The Good, The Bad and The UglyDevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
DevOpsGuys - DevOps Automation - The Good, The Bad and The Ugly
 
Devops interview questions 2 www.bigclasses.com
Devops interview questions  2  www.bigclasses.comDevops interview questions  2  www.bigclasses.com
Devops interview questions 2 www.bigclasses.com
 
Unit Testing in R with Testthat - HRUG
Unit Testing in R with Testthat - HRUGUnit Testing in R with Testthat - HRUG
Unit Testing in R with Testthat - HRUG
 
Agile
AgileAgile
Agile
 
DevOps - Boldly Go for Distro
DevOps - Boldly Go for DistroDevOps - Boldly Go for Distro
DevOps - Boldly Go for Distro
 
PaaSTA: Running applications at Yelp
PaaSTA: Running applications at YelpPaaSTA: Running applications at Yelp
PaaSTA: Running applications at Yelp
 
Fluo CICD OpenStack Summit
Fluo CICD OpenStack SummitFluo CICD OpenStack Summit
Fluo CICD OpenStack Summit
 
MuleSoft_Meetup_Brisbane_2022-06-01_SonarQube_CataloguingAPIs.pptx
MuleSoft_Meetup_Brisbane_2022-06-01_SonarQube_CataloguingAPIs.pptxMuleSoft_Meetup_Brisbane_2022-06-01_SonarQube_CataloguingAPIs.pptx
MuleSoft_Meetup_Brisbane_2022-06-01_SonarQube_CataloguingAPIs.pptx
 
CNUG TDD June 2014
CNUG TDD June 2014CNUG TDD June 2014
CNUG TDD June 2014
 
The State of the Veil Framework
The State of the Veil FrameworkThe State of the Veil Framework
The State of the Veil Framework
 

Recently uploaded

AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 

Recently uploaded (20)

Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodology
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
ManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide DeckManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide Deck
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
 

2014 land your-first_patch_neutron

  • 1. Land your first Neutron patch Rossella Sblendido <rsblendido@suse.com>
  • 3. 3 After this talk...
  • 5. 5 What's Neutron? •Neutron is an OpenStack project to provide “networking as a service” between interface devices (e.g., vNICs) managed by other OpenStack services (e.g., Nova) •Provides a powerful API to define the network connectivity
  • 6. 6 Modular architecture •Neutron-server: expose the API •Plugin: custom back-end implementation of the Networking API •Several agents: ‒plug-in agent (L2 agent): runs on each hypervisor to perform local vSwitch configuration ‒dhcp agent: Provides DHCP services to tenant networks ‒l3 agent: Provides L3/NAT forwarding to provide external network access for VMs on tenant network
  • 7. 7 I want to know more... •Read the networking admin guide here •Explore the code: git clone git@github.com:openstack/neutron.git Tip: PyCharm can make your life easier ‒Navigate to Class Ctrl+N ‒Navigate to File Ctrl+Shift+N ‒Navigate to Declaration Ctrl+B
  • 8. 8 Use Devstack to crack it open • Script to build a complete stack • To set it up only few steps: ‒ git clone https://github.com/openstack-dev/devstack.git ‒ cd devstack; ./stack.sh • Resume the screen session to check what's going on: screen -x • You can use pdb to set breakpoints
  • 9. 9 Devstack – Config file tips disable_service n-net enable_service q-svc enable_service q-agt enable_service q-dhcp enable_service q-l3 enable_service q-meta DATABASE_PASSWORD=admin RABBIT_PASSWORD=admin SERVICE_TOKEN=admin SERVICE_PASSWORD=admin ADMIN_PASSWORD=admin INSTALL_TESTONLY_PACKAGES=True
  • 10. 10 Inspecting the networking configuration •ip link •ip netns list •ip netns exec <namespace> <command> •ovs-vsctl show •iptables -S
  • 11. 11 Questions... Where to ask? • IRC freenode #openstack-neutron • openstack - general questions • openstack-dev - dev related questions • openstack-operators Follow the mailing list etiquette
  • 12. Writing your first patchFix a bug or add a new feature
  • 14. 14 Launchpad • Bugs • Blueprints • Milestones/Releases • It handles authentication for other websites (eg. Gerrit)
  • 15. 15 Bugs • Look for "low-hanging-fruit" tag • Pick one and assign it to you
  • 16. 16 How to fix a bug • Try to reproduce it • Debug the issue (add log statement or you can use a debugger if you are on Devstack) • Write a patch • Test it • Write a unit test if that's appropriate to avoid regressions
  • 17. 17 Blueprint + Spec workflow • Register blueprint in Launchpad • Upload a design specification to Gerrit to specs/<release> folder in neutron-specs • Use specs/template.srt from Neutron specs repo • Specs follow the same Gerrit workflow as patches • Project drivers will approve blueprint
  • 19. 19 Style check • Based on flake8 and hacking
  • 20. 20 How to run unittests • run_tests.sh script • tox Run one test: •./run_tests.sh neutron.tests.unit.test_api_v2.JSONV2TestCase or •tox -e py27 neutron.tests.unit.test_api_v2.JSONV2TestCase
  • 21. 21 Debugging unitests •./run_tests.sh -d [test module path] •tox -e venv -- python -m testtools.run [test module path] See here for more info
  • 23. 23 Git Git is the tool used for managing the code ‒ git clone (clone Neutron repo) ‒ git checkout -b topic-branch ‒ apply your changes ‒ git add ‒ git commit ‒ git review -> you need to install it ‒ git commit --amend -> create a new patch Set ‒ git review
  • 25. 25 Gerrit • You can review other people code, your code get reviewed • Automatic Gatekeeper
  • 26. 26 Gerrit – Code-Review and Workflow Code-Review ‒+1, -1 everybody ‒+2, -2 core reviewers Workflow ‒Workflow +1 , only core reviewers (usually after it got 2x +2) ‒Workflow -1, WIP
  • 27. 27 Gerrit – Verified • Every patch is tested and gets a ‒+1 Verified ‒-1 Failed • Style checker + unit tests + functional tests + integration tests (Tempest) + upgrade tests (Grenade) • Test are run by the OpenStack CI and for some project by third party CI • Logs are accessible, you can check why a test failed
  • 28. Get your patch merged
  • 29. 29 Code - Best practices • Check spelling • Add comments if needed • Run flake8 and test before you submit • Create small patches • Do one logical change per patch. Don't mixup different fixes • Try to avoid dependent patches if possible -> rebase hell
  • 30. 30 Commit messages – best practices • Explain the how and the why, not the what • Use special tags in commit messages (i.e. "Closes-Bug: #1234567") , they are matched by automation scripts • For needed documentation changes, use DocImpact flag • See here for more info
  • 31. 31 Getting reviews - Best practices • Be polite • Try to be specific regarding what you will address and what not. • Reply 'Done' if you are gonna change the patch according to the comment. • Explain why you are not gonna address a comment • The best way to get reviews is to be involved
  • 32. 32 Reviewing - Best practices • Be polite • Ask questions • Show examples when you give some suggestion • If you give a "-1" make sure to check if the submitter answered. A '-1' can block a patch • Quality vs quantity • It takes time to review but you will learn a lot!
  • 33. Thank you. 33 Questions?
  • 34. Unpublished Work of SUSE. All Rights Reserved. This work is an unpublished work and contains confidential, proprietary and trade secret information of SUSE. Access to this work is restricted to SUSE employees who have a need to know to perform tasks within the scope of their assignments. No part of this work may be practiced, performed, copied, distributed, revised, modified, translated, abridged, condensed, expanded, collected, or adapted without the prior written consent of SUSE. Any use or exploitation of this work without authorization could subject the perpetrator to criminal and civil liability. General Disclaimer This document is not to be construed as a promise by any participating company to develop, deliver, or market a product. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. SUSE makes no representations or warranties with respect to the contents of this document, and specifically disclaims any express or implied warranties of merchantability or fitness for any particular purpose. The development, release, and timing of features or functionality described for SUSE products remains at the sole discretion of SUSE. Further, SUSE reserves the right to revise this document and to make changes to its content, at any time, without obligation to notify any person or entity of such revisions or changes. All SUSE marks referenced in this presentation are trademarks or registered trademarks of Novell, Inc. in the United States and other countries. All third-party trademarks are the property of their respective owners.