What are some things that you do to make sure a project is ready to be released? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T06:39:41Z http://stackoverflow.com/feeds/question/119829 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released 14 What are some things that you do to make sure a project is ready to be released? jjnguy 2008-09-23T08:26:15Z 2009-07-22T10:00:40Z <p>I was wondering what final steps developers take before they release their new project.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119841#119841 8 Answer by moran for What are some things that you do to make sure a project is ready to be released? moran 2008-09-23T08:28:56Z 2008-09-23T08:28:56Z <p>Have someone other than the developers who wrote the software test it.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119845#119845 4 Answer by Greg Hewgill for What are some things that you do to make sure a project is ready to be released? Greg Hewgill 2008-09-23T08:29:51Z 2008-09-23T08:29:51Z <p>Grep the source code for:</p> <ul> <li>TODO comments</li> <li>Profanity (especially in end-user messages!)</li> </ul> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119870#119870 2 Answer by geocoin for What are some things that you do to make sure a project is ready to be released? geocoin 2008-09-23T08:37:44Z 2008-09-23T08:37:44Z <p>freeze development of new code in the release version and only fix bugs. </p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119871#119871 1 Answer by Oli for What are some things that you do to make sure a project is ready to be released? Oli 2008-09-23T08:38:09Z 2008-09-23T08:38:09Z <ul> <li>Independent security testing </li> <li>User testing</li> <li>Accessibility testing</li> </ul> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119898#119898 1 Answer by Chii for What are some things that you do to make sure a project is ready to be released? Chii 2008-09-23T08:43:54Z 2008-09-23T08:43:54Z <p>Make sure all the tests pass! You do have tests don't you? =)</p> <p>If there <em>exists</em> this one final thing, then it makes more sense to do it often (and not just before release). </p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119914#119914 5 Answer by Suma for What are some things that you do to make sure a project is ready to be released? Suma 2008-09-23T08:48:04Z 2008-09-23T08:58:05Z <p>An approach which is worth considering: do those things which needs to be done for the software to be release not and the very end of the development cycle, but do it early instead. By doing this "just before the release" you risk a lot, because those things will usualy take a lot more effort and energy than expected.</p> <p>Those things are:</p> <ul> <li>build setup, or whatever deployment method your application uses</li> <li>let other test the application</li> <li>fix known critical bugs</li> </ul> <p>For larger projects I would add:</p> <ul> <li>create automated testing pipeline and create at least functionality tests covering the basic functionality</li> <li>create automated build pipeline, which should build Retail configuration of your project and automatically create a setup from it</li> </ul> <p>This taken into all consequences leads to key principles of agile development: deploy early, deploy frequently, deploy to someone representing the customer.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119934#119934 16 Answer by Stephan for What are some things that you do to make sure a project is ready to be released? Stephan 2008-09-23T08:53:31Z 2008-09-23T08:53:31Z <p>Here are some of my ideas. </p> <ul> <li>Take a 'naked' e.g. non dev-machine, with a fresh OS and run your software there. You can do this in a virtual machine.</li> <li>Let non-devs test your app.</li> <li><strong>Watch other people how they use your software</strong> in order to find design/usability bugs.</li> </ul> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119951#119951 2 Answer by Kramii for What are some things that you do to make sure a project is ready to be released? Kramii 2008-09-23T08:58:50Z 2008-09-23T08:58:50Z <p>Experience has taught me to test the software in the production environment, rather than just on my dev box.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/119984#119984 5 Answer by phjr for What are some things that you do to make sure a project is ready to be released? phjr 2008-09-23T09:08:09Z 2008-09-23T09:08:09Z <p><strong>Watch development rate</strong> and wait for it to drop. Wait a bit longer than the initial drop, to make sure that it's thoroughly bugfixed. <strong>This is often neglected step.</strong> And it's crucial for quality. Don't release the thing immediately. Even if you think it's ready. Wait a bit.</p> <p>You can also use techniques like <em>defects pooling</em> and <em>defect seeding</em> to estimate number of bugs yet to be found.</p> <p>And make sure developers on the team don't have any hidden <strong>private TODOs.</strong> They may think they will eventually get back to them (they're often cleanuo tasks), but in fact it rarely happens, and tends to delay the project or hamper quality.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/120081#120081 3 Answer by dcraggs for What are some things that you do to make sure a project is ready to be released? dcraggs 2008-09-23T09:42:31Z 2008-09-23T09:42:31Z <p>Testing is key. Developers should do initial testing, but independant testing is vital. Developers are too close to the code to test properly.</p> <p>The product to be tested should be built using automated build tools (such as FinalBuilder). The developer should check all his code into source configeration control and the automated build tool should retrieve the latest code from SCC and then do the build. This ensures that what is built is actually stored in the repository. We also include all third party components in the SCC as well.</p> <p>We also issue a version history with each release to aid testing.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/120306#120306 3 Answer by Rune Jacobsen for What are some things that you do to make sure a project is ready to be released? Rune Jacobsen 2008-09-23T10:52:48Z 2008-09-23T10:52:48Z <p>Not that I am an experienced developer, but.. :)</p> <p>What works relatively well for me..</p> <ul> <li><p>Release early, release often. On my hobby project I keep a group of alpha testers that I subject to new versions as soon as it seems to work on my PC. The beta testers only get a go once the hate mail from the alpha testers dies down a bit.</p></li> <li><p>Unit testing is not just a help in design, but gives you a lot of confidence in the quality of your code. If you don't love it yet, you haven't written enough tests. ;)</p></li> <li><p>Test it in a plain, vanilla Virtual PC. One set up to clean up any changes you make as soon as you switch it off. That way, you're ALWAYS performing a clean install, and you'll find out about any assumptions you made which your development machine had no trouble with.</p></li> <li><p>Keep a log of bugs and "weak spots" in your code. Test stuff that has failed before. Do stupid things. Try to think like a baby and make a game out of it; See if you CAN break your application. </p></li> </ul> <p>Of course, all of these are based on having ongoing releases at (semi-) regular intervals - I am not brave enough to release software based solely on my own testing. :)</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/120415#120415 1 Answer by Guy for What are some things that you do to make sure a project is ready to be released? Guy 2008-09-23T11:29:38Z 2008-09-23T11:29:38Z <p>In "line of business" applications (i.e. corporate applications) there are a number of processes post development completion:</p> <p>Usually these are called: (names will vary, but the process is fairly standard)</p> <ul> <li>User Acceptance Testing. <em>Does the software do what the users want it to do?</em></li> <li>Fitness for Purpose. (or Performance Review) <em>Does the system/software work correctly and scale adequately on "normal" machines (or the production servers)</em></li> <li>Operational Handover. <em>Can the application be upgraded / installed correctly. How do you back it up and recover the system if there is a failure? Where is the documentation for the Helpdesk?</em></li> </ul> <p>Even for non-commercial software, these are steps that should be incorporated into any release process, which usually involves finishing off all the mind numbingly boring things that you've put off up to now (like documentation!)</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/120416#120416 1 Answer by Jeff V for What are some things that you do to make sure a project is ready to be released? Jeff V 2008-09-23T11:29:48Z 2008-09-23T11:29:48Z <p>Further to Greg Hewgill's post on greping for //TODO: comments.</p> <p>I find it handy to mark code added for debugging with: "//debug:" (eclipse style) and then grep'ing for that as well.</p> <p>If you use the todo / debug convention religiously, it can be a real safeguard to catch such problems.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/120565#120565 1 Answer by CobolGuy for What are some things that you do to make sure a project is ready to be released? CobolGuy 2008-09-23T12:07:04Z 2008-09-23T12:07:04Z <p>The final steps of any of my projects is system testing. We have a system test platform here that is a complete copy of production. We then overlay any changed modules from our project into it, then completely test it, from web access, inputs, outputs, batch cycles, everything. It can be tedious and time-consuming, but it's been invaluable in what it can point out that normal unit testing does not. We try to encourage all of our developers to do string testing, but nothing beats a full production system test, where you really get to see what it's going to do when you move it to prod.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/120727#120727 0 Answer by Vilmantas Baranauskas for What are some things that you do to make sure a project is ready to be released? Vilmantas Baranauskas 2008-09-23T12:39:04Z 2008-09-23T12:39:04Z <p>This varies greatly depending on the kind of project you have:</p> <ul> <li>Consultingware;</li> <li>SaaS;</li> <li>Packaged product for Desktop.</li> <li>Software to control critical systems (e.g. nuclear power plant).</li> <li>OpenSource software package.</li> <li>etc.</li> </ul> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/120986#120986 1 Answer by mdzindzeleta for What are some things that you do to make sure a project is ready to be released? mdzindzeleta 2008-09-23T13:28:31Z 2008-09-23T13:41:17Z <p>I'm not a true developer since I don't actually write the code. But I assist in writing the documentation, training the customers and supporting the product after deployment.</p> <p>The biggest issues I, and our customers, experience is poor usability caused by lack of code testing. It doesn't need to be anything formal: just stop someone in the hallway - show them a screenshot and see if they can determine how things work, or what it's intended to do. If they can't a redesign is warranted.</p> <p>Better yet: don't design the code without write function specs based on conversations with end users and support staff familiar with the industry and customer needs. And don't deploy the code until it meets all apsects of that function spec.</p> <p>Our newest lead developer has implemented these steps and no code is released until it's undergone internal testing not just by Q&amp;A but also by documentation and support staff. It's so much easier to fix the code before customer release and has lead to a much better/solid product.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/122730#122730 0 Answer by asterite for What are some things that you do to make sure a project is ready to be released? asterite 2008-09-23T18:14:54Z 2008-09-23T18:14:54Z <p>Say it's beta.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/123149#123149 1 Answer by Mnementh for What are some things that you do to make sure a project is ready to be released? Mnementh 2008-09-23T19:14:33Z 2009-04-21T14:00:46Z <p>The most important thing before a new release is <strong>NOT</strong> to break anything that works now. So the most important step is:</p> <ul> <li>feature-freeze: only fix bugs now, no new or enhanced features in the last phase before release (you can branch in your version-control, new features going now to the branch for the next version)</li> </ul> <p>As you should only fix bugs now, it's time for more testing:</p> <ul> <li>give the software to external testers</li> <li>make some stress-tests, look if the software will break under load</li> <li>install and test it on a fresh box (not on the developer-box)</li> <li>Try to start with no configuration/empty database or whatever is a relevant start-configuration for your project.</li> </ul> <p>I hope you already do unit-testing and continuous integration.</p> <p>If you have time between fixing bugs, you can check the documentation: Includes it the changes since the last release, are the tutorials working?</p> <p>And you can check, if your code includes the new version-number at all places (make a full-text-search for the old version-number). It's always fun for the users, if you release version 1.3 and the about-dialog talks about version 1.2.</p> <p>Never do in the last phase before the release:</p> <ul> <li>refactoring</li> <li>working on TODO-comments (as mentioned by others)</li> </ul> <p>These are jobs for the first time AFTER the release.</p> http://stackoverflow.com/questions/119829/what-are-some-things-that-you-do-to-make-sure-a-project-is-ready-to-be-released/1164201#1164201 1 Answer by Anders Rune Jensen for What are some things that you do to make sure a project is ready to be released? Anders Rune Jensen 2009-07-22T09:52:07Z 2009-07-22T10:00:40Z <p>You are asking for final steps. In case your development team has been eating their own dog food the final steps should just be releasing what you have. Though there are some good pointers as to when this should be done:</p> <ul> <li>Have all the stake holders (developers doing the code) say the code is good</li> <li>Make sure that no major feature has been added recently (watch development rate as phjr wrote)</li> <li>Let the users pound it. The users should already have been using the code, now is the time for them to take responsibility</li> <li>Make sure that everyone is committed to doing the release</li> <li>Make sure that the final steps phase is short (it should be if you have been eating your own dog food)</li> </ul>