2010-04-12 13:15:44 -07:00
2010-04-12 13:15:44 -07:00
2010-04-06 22:08:41 -07:00

Global setup:

 Download and install Git
  git config --global user.name "Your Name"
  git config --global user.email murali.nandigama@gmail.com
        

Next steps:

  mkdir topfails-from-tinderbox
  cd topfails-from-tinderbox
  git init
  touch README
  git add README
  git commit -m 'first commit'
  git remote add origin git@github.com:nandigama/topfails-from-tinderbox.git
  git push origin master
      

Existing Git Repo?

  cd existing_git_repo
  git remote add origin git@github.com:nandigama/topfails-from-tinderbox.git
  git push origin master
      

Importing a Subversion Repo?

  Click here
      

When you're done:

  Continue


Description
mozilla tinderbox runs approx 150K tests per run @ 120 runs per day. Identifying the top failures from all these runs and tracking their timeline is important.
Readme 1.3 MiB
Languages
Python 76.6%
HTML 23.3%