<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How do I run WebDriver tests against an older 5.6-SNAPSHOT version? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317156#M4157</link>
    <description>&lt;P&gt;I'm trying to compare runs of WebDriver in different snapshots against each other. So I want to run the tests using an older snapshot (whether hosted on the public maven repos or in my own local repo).&lt;/P&gt;
&lt;P&gt;To run the WebDriver tests, here's what I do:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;$ git clone &lt;A href="http://github.com/nuxeo/nuxeo-distribution.git" target="test_blank"&gt;http://github.com/nuxeo/nuxeo-distribution.git&lt;/A&gt;
$ git checkout -b 5.6-SNAPSHOT origin/5.6-SNAPSHOT
$ cd nuxeo-distribtution/nuxeo-distribution-dm/ftest/webdriver/
$ mvn verify
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Magic happens, and the WebDriver tests start running. But every day I execute the command, it will pull that day's snapshot. Is there anyway I can run yesterday's snapshot or the one from last week? Thanks!&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jun 2012 17:32:54 GMT</pubDate>
    <dc:creator>jadtn_</dc:creator>
    <dc:date>2012-06-28T17:32:54Z</dc:date>
    <item>
      <title>How do I run WebDriver tests against an older 5.6-SNAPSHOT version?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317156#M4157</link>
      <description>&lt;P&gt;I'm trying to compare runs of WebDriver in different snapshots against each other. So I want to run the tests using an older snapshot (whether hosted on the public maven repos or in my own local repo).&lt;/P&gt;
&lt;P&gt;To run the WebDriver tests, here's what I do:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;$ git clone &lt;A href="http://github.com/nuxeo/nuxeo-distribution.git" target="test_blank"&gt;http://github.com/nuxeo/nuxeo-distribution.git&lt;/A&gt;
$ git checkout -b 5.6-SNAPSHOT origin/5.6-SNAPSHOT
$ cd nuxeo-distribtution/nuxeo-distribution-dm/ftest/webdriver/
$ mvn verify
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Magic happens, and the WebDriver tests start running. But every day I execute the command, it will pull that day's snapshot. Is there anyway I can run yesterday's snapshot or the one from last week? Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2012 17:32:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317156#M4157</guid>
      <dc:creator>jadtn_</dc:creator>
      <dc:date>2012-06-28T17:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run WebDriver tests against an older 5.6-SNAPSHOT version?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317157#M4158</link>
      <description>&lt;P&gt;Not without rebuilding the whole source code. "SNAPSHOT" is a Maven keyword which always point to the latest available snapshot artifact.&lt;/P&gt;
&lt;P&gt;You could use a different Maven repository (&lt;CODE&gt;~/.m2/repository&lt;/CODE&gt; by default) every day. That way, each repository will contain the artifacts from the wanted day. Then, if you want to rerun the tests against a previous day, you will have to run Maven in offline mode (&lt;CODE&gt;-o&lt;/CODE&gt;) or to set the snapshots updatePolicy to "never" in your Maven settings (&lt;CODE&gt;~/.m2/settings.xml&lt;/CODE&gt;), and to make Maven use the wanted repository using an alias or with the settings property &lt;CODE&gt;localRepository&lt;/CODE&gt;.&lt;/P&gt;
&lt;P&gt;What is the purpose of the comparison? Note the 5.6-SNAPSHOT artifacts are made publicly available only if the tests run fine.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2012 17:56:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317157#M4158</guid>
      <dc:creator>Julien_Carsique</dc:creator>
      <dc:date>2012-06-28T17:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run WebDriver tests against an older 5.6-SNAPSHOT version?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317158#M4159</link>
      <description>&lt;P&gt;That will most likely work. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2012 18:33:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317158#M4159</guid>
      <dc:creator>jadtn_</dc:creator>
      <dc:date>2012-06-28T18:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run WebDriver tests against an older 5.6-SNAPSHOT version?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317159#M4160</link>
      <description>&lt;P&gt;You can run the tests against a Nuxeo instance that you've started yourself using:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;mvn -o test-compile
mvn -o org.apache.maven.plugins:maven-failsafe-plugin:integration-test -Dlog4j.configuration=src/main/resources/log4j.xml -Dnuxeo.log.dir=target
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This doc has been added to &lt;CODE&gt;nuxeo-distribution-dm/ftest/webdriver/README.md&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jul 2012 15:31:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317159#M4160</guid>
      <dc:creator>Florent_Guillau</dc:creator>
      <dc:date>2012-07-04T15:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run WebDriver tests against an older 5.6-SNAPSHOT version?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317160#M4161</link>
      <description>&lt;P&gt;Cool. This was the next thing I needed, and I was starting to spend time figuring out how to do it.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2012 05:24:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317160#M4161</guid>
      <dc:creator>jadtn_</dc:creator>
      <dc:date>2012-07-05T05:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I run WebDriver tests against an older 5.6-SNAPSHOT version?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317161#M4162</link>
      <description>&lt;P&gt;The command you specified fails with "No target specified" for nuxeo-distribution-dm/ftest/webdriver. I've asked a related question here&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jul 2012 00:29:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-do-i-run-webdriver-tests-against-an-older-5-6-snapshot/m-p/317161#M4162</guid>
      <dc:creator>jadtn_</dc:creator>
      <dc:date>2012-07-11T00:29:20Z</dc:date>
    </item>
  </channel>
</rss>

