Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:73703 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 38899 invoked from network); 15 Apr 2014 16:37:34 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Apr 2014 16:37:34 -0000 Authentication-Results: pb1.pair.com smtp.mail=julienpauli@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=julienpauli@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.128.169 as permitted sender) X-PHP-List-Original-Sender: julienpauli@gmail.com X-Host-Fingerprint: 209.85.128.169 mail-ve0-f169.google.com Received: from [209.85.128.169] ([209.85.128.169:47960] helo=mail-ve0-f169.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F4/21-30922-D406D435 for ; Tue, 15 Apr 2014 12:37:33 -0400 Received: by mail-ve0-f169.google.com with SMTP id pa12so9717633veb.0 for ; Tue, 15 Apr 2014 09:37:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=pdVmAYT5Vj+rDVUJ82S0ufJmD0k75O8V/lAEoPJ6O+A=; b=UNQWcp6gtT6iz3wBcfKlW0tSRFdIoKJa8AAcyae9p2yH80Qcu0ENwAOG3ALK3fHUI3 LBzHwUd8lWk20VHvgCHMr1sTM7SlFVXYH69pPdrAY60ix59JchBWuLERl8HEScQ1KffE FLotvD4vLBnhPKrfIdjNkrx1AI3tiMmj50RNlAGJs319Bq7aFxEQ81ajU4Bb5hcDd+lh vrmZ0lNOeb0BPVNOX/lp4okAYWt/ZnnlT4XpHwdY/SqfWqhw5mgIRFDS+I+FMGxAbPCF 5K91cNb2eOFFV7II9X2P8wR9WT3TR1u/FNn6w2kCFazfbvI9B2P7x9BZ7YwXJc8savka 5RRQ== X-Received: by 10.221.63.1 with SMTP id xc1mr982107vcb.35.1397579851016; Tue, 15 Apr 2014 09:37:31 -0700 (PDT) MIME-Version: 1.0 Sender: julienpauli@gmail.com Received: by 10.220.81.68 with HTTP; Tue, 15 Apr 2014 09:36:50 -0700 (PDT) In-Reply-To: <534D5F7F.5080604@sugarcrm.com> References: <534C2133.8010402@sugarcrm.com> <534D5F7F.5080604@sugarcrm.com> Date: Tue, 15 Apr 2014 18:36:50 +0200 X-Google-Sender-Auth: 2u5C3qaCAG0nWviyYvSkdXpaELE Message-ID: To: Stas Malyshev Cc: PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] [RFC] keeping unit tests green From: jpauli@php.net (Julien Pauli) On Tue, Apr 15, 2014 at 6:34 PM, Stas Malyshev wrote: > Hi! > >> So I'm OK, as soon as it is simple. >> For example, I dont know Travis. So when opening the Travis page about >> PHP, I see many things, red or green, and feel like lost in all those >> informations. > > Travis is pretty simple as such - you go to > https://travis-ci.org/php/php-src/builds and check out your branch > (branch name is in Commit column). If it's not green, you click on the > build number and get the log which says what went wrong. The failed > tests are usually at the very end, and once you know the names of the > tests failed, look them up in the log to find the details. > > With pulls on github, you just click on "Details" link and it gets you > to the same log page. > > Setting up a fork requires some configs, but Travis docs are good > enough. I might also add a wiki page on how to set up the fork in Travis > a bit later. Yes I spent some time to see how it works, it seems pretty easy. In fact, if we could add more analyze tools, it would be nice, because actually, it just acts as an autommated "make test". Julien