You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by me...@apache.org on 2018/10/03 19:55:59 UTC

[beam-site] branch asf-site updated (ad9a085 -> 3a5943e)

This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/beam-site.git.


    from ad9a085  Prepare repository for deployment.
     add 17814c2  Fix wrong gradle project targets in testing web-page.
     add 8d99a08  This closes #563
     new 3a5943e  Prepare repository for deployment.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 content/contribute/testing/index.html | 6 +++---
 src/contribute/testing.md             | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)


[beam-site] 01/01: Prepare repository for deployment.

Posted by me...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mergebot-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit 3a5943e7bdbeefb881999ca1d91d7c08d2233b3e
Author: Mergebot <me...@apache.org>
AuthorDate: Wed Oct 3 19:55:57 2018 +0000

    Prepare repository for deployment.
---
 content/contribute/testing/index.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/content/contribute/testing/index.html b/content/contribute/testing/index.html
index 2c27a71..a616019 100644
--- a/content/contribute/testing/index.html
+++ b/content/contribute/testing/index.html
@@ -336,13 +336,13 @@ desired configurations.</p>
 <p>NeedsRunner is a category of tests that require a Beam runner. To run
 NeedsRunner tests:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ ./gradlew :runners:direct-java:needsRunnerTests
+<div class="highlighter-rouge"><pre class="highlight"><code>$ ./gradlew beam-runners-direct-java:needsRunnerTests
 </code></pre>
 </div>
 
 <p>To run a single NeedsRunner test use the <code class="highlighter-rouge">test</code> property, e.g.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ ./gradlew :runners:direct-java:needsRunnerTests --tests org.apache.beam.sdk.transforms.MapElementsTest.testMapBasic
+<div class="highlighter-rouge"><pre class="highlight"><code>$ ./gradlew beam-runners-direct-java:needsRunnerTests --tests org.apache.beam.sdk.transforms.MapElementsTest.testMapBasic
 </code></pre>
 </div>
 
@@ -352,7 +352,7 @@ NeedsRunner tests:</p>
 <code class="highlighter-rouge">sdks/java/io/google-cloud-platform</code>) can be executed with the <code class="highlighter-rouge">gradle test</code>
 command:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>$ ./gradlew sdks:java:io:google-cloud-platform:test --tests org.apache.beam.sdk.io.gcp.spanner.SpannerIOWriteTest
+<div class="highlighter-rouge"><pre class="highlight"><code>$ ./gradlew beam-sdks-java-io-google-cloud-platform:test --tests org.apache.beam.sdk.io.gcp.spanner.SpannerIOWriteTest
 </code></pre>
 </div>