commit/galaxy-central: greg: Fix tool shed functional test that uploaded a tar archive without properly setting the option to not remove files from the repository that are not included in the uploaded archive. This resulted in setting metadata on the repository after upload in such a way that functional tests were not properly testing behavior.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/06b9f3ddce04/ changeset: 06b9f3ddce04 user: greg date: 2013-02-13 18:40:11 summary: Fix tool shed functional test that uploaded a tar archive without properly setting the option to not remove files from the repository that are not included in the uploaded archive. This resulted in setting metadata on the repository after upload in such a way that functional tests were not properly testing behavior. affected #: 1 file diff -r 6b10699dc0950691097400e83fa6b51e35501e6f -r 06b9f3ddce047c8db70e892732441a35cc91b241 test/tool_shed/functional/test_0400_repository_component_reviews.py --- a/test/tool_shed/functional/test_0400_repository_component_reviews.py +++ b/test/tool_shed/functional/test_0400_repository_component_reviews.py @@ -452,7 +452,10 @@ """ repository = test_db_util.get_repository_by_name_and_owner( repository_name, common.test_user_1_name ) user = test_db_util.get_user( common.test_user_2_email ) - self.upload_file( repository, 'filtering/filtering_test_data.tar', commit_message="Uploaded test data." ) + self.upload_file( repository, + 'filtering/filtering_test_data.tar', + commit_message="Uploaded test data.", + remove_repo_files_not_in_tar='No' ) def test_0110_review_new_changeset_functional_tests( self ): '''Update the filtering repository's readme component review to reflect the presence of the readme file.''' """ Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket