You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pr@cassandra.apache.org by GitBox <gi...@apache.org> on 2020/06/04 06:34:18 UTC

[GitHub] [cassandra-dtest] nastra opened a new pull request #72: Allow running upgrade tests without any other tests

nastra opened a new pull request #72:
URL: https://github.com/apache/cassandra-dtest/pull/72


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org
For additional commands, e-mail: pr-help@cassandra.apache.org


[GitHub] [cassandra-dtest] michaelsembwever merged pull request #72: Introduce --execute-upgrade-tests-only to only run upgrade tests

Posted by GitBox <gi...@apache.org>.
michaelsembwever merged pull request #72:
URL: https://github.com/apache/cassandra-dtest/pull/72


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org
For additional commands, e-mail: pr-help@cassandra.apache.org


[GitHub] [cassandra-dtest] snazy commented on a change in pull request #72: Allow running upgrade tests without any other tests

Posted by GitBox <gi...@apache.org>.
snazy commented on a change in pull request #72:
URL: https://github.com/apache/cassandra-dtest/pull/72#discussion_r435108244



##########
File path: conftest.py
##########
@@ -466,6 +468,11 @@ def pytest_collection_modifyitems(items, config):
     for item in items:
         deselect_test = False
 
+        if config.getoption("--execute-upgrade-tests-only"):
+            deselect_test = True

Review comment:
       ```suggestion
               deselect_test = not item.get_closest_marker("upgrade_test")
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org
For additional commands, e-mail: pr-help@cassandra.apache.org


[GitHub] [cassandra-dtest] nastra commented on a change in pull request #72: --execute-upgrade-tests should only run upgrade tests

Posted by GitBox <gi...@apache.org>.
nastra commented on a change in pull request #72:
URL: https://github.com/apache/cassandra-dtest/pull/72#discussion_r435151629



##########
File path: conftest.py
##########
@@ -466,6 +468,11 @@ def pytest_collection_modifyitems(items, config):
     for item in items:
         deselect_test = False
 
+        if config.getoption("--execute-upgrade-tests-only"):
+            deselect_test = True

Review comment:
       fixed




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org
For additional commands, e-mail: pr-help@cassandra.apache.org