Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 96A65200B9C for ; Thu, 1 Sep 2016 21:04:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 957D8160ACF; Thu, 1 Sep 2016 19:04:24 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 769E3160AD1 for ; Thu, 1 Sep 2016 21:04:23 +0200 (CEST) Received: (qmail 25094 invoked by uid 500); 1 Sep 2016 19:04:22 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 24844 invoked by uid 99); 1 Sep 2016 19:04:22 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Sep 2016 19:04:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 14BDEE17B1; Thu, 1 Sep 2016 19:04:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Thu, 01 Sep 2016 19:04:29 -0000 Message-Id: In-Reply-To: <6d97e0a1cb7b4b91b5ea112a8adfab8d@git.apache.org> References: <6d97e0a1cb7b4b91b5ea112a8adfab8d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/28] accumulo git commit: ACCUMULO-4439 Create SunnyDayTest category archived-at: Thu, 01 Sep 2016 19:04:24 -0000 ACCUMULO-4439 Create SunnyDayTest category Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/775dccd1 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/775dccd1 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/775dccd1 Branch: refs/heads/master Commit: 775dccd1fa750c25205b7db9d25fb4b35bb414b8 Parents: 3bf0845 Author: Christopher Tubbs Authored: Wed Aug 31 19:10:38 2016 -0400 Committer: Christopher Tubbs Committed: Thu Sep 1 13:13:50 2016 -0400 ---------------------------------------------------------------------- TESTING.md | 13 ++++++++++- pom.xml | 2 +- .../apache/accumulo/start/KeywordStartIT.java | 3 +++ .../org/apache/accumulo/test/InMemoryMapIT.java | 12 +++++++--- .../org/apache/accumulo/test/ShellServerIT.java | 8 +++++-- .../accumulo/test/categories/SunnyDayTests.java | 23 ++++++++++++++++++++ .../accumulo/test/functional/ExamplesIT.java | 4 ++++ .../accumulo/test/functional/NativeMapIT.java | 3 +++ .../accumulo/test/functional/ReadWriteIT.java | 4 ++++ .../accumulo/test/proxy/TCompactProxyIT.java | 7 +++--- 10 files changed, 69 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/775dccd1/TESTING.md ---------------------------------------------------------------------- diff --git a/TESTING.md b/TESTING.md index 4d37055..709eb18 100644 --- a/TESTING.md +++ b/TESTING.md @@ -50,7 +50,18 @@ least 3-4GB of free memory and 10GB of free disk space. ## Test Categories Accumulo uses JUnit Category annotations to categorize certain integration tests based on their runtime requirements. -Presently there are three different categories: +Presently there are several different categories: + +### SunnyDay (`SunnyDayTests`) + +This test category represents a minimal set of tests chosen to verify the basic +functionality of Accumulo. These would typically be run prior to submitting a +patch or pull request, or fixing a bug, to quickly ensure no basic functions +were broken by the change. + +These tests will run by default during the `integration-test` lifecycle phase using `mvn verify`. +To execute only these tests, use `mvn verify -Dfailsafe.groups=org.apache.accumulo.test.categories.SunnyDayTests` +To execute everything except these tests, use `mvn verify -Dfailsafe.excludedGroups=org.apache.accumulo.test.categories.SunnyDayTests` ### MiniAccumuloCluster (`MiniClusterOnlyTest`) http://git-wip-us.apache.org/repos/asf/accumulo/blob/775dccd1/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index cc2b9e0..62f58bb 100644 --- a/pom.xml +++ b/pom.xml @@ -1320,7 +1320,7 @@ sunny - ReadWriteIT,SimpleProxyIT,ExamplesIT,ShellServerIT + org.apache.accumulo.test.categories.SunnyDayTests