From e85798511c9fe1f6d78546b885cdf214d5929de5 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sat, 10 Dec 2022 11:28:41 +0100 Subject: [PATCH] Move test_history_export selenium test This selenium test is for testing the previous history export UI that is based on jobs and not tasks. Since Celery is enabled by default in the test instance it is more consistent to convert it into an integration selenium test to modify the config and disable Celery. --- .../integration_selenium}/test_history_export.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename {lib/galaxy_test/selenium => test/integration_selenium}/test_history_export.py (94%) diff --git a/lib/galaxy_test/selenium/test_history_export.py b/test/integration_selenium/test_history_export.py similarity index 94% rename from lib/galaxy_test/selenium/test_history_export.py rename to test/integration_selenium/test_history_export.py index bc5adf2fff84..9675f85b620f 100644 --- a/lib/galaxy_test/selenium/test_history_export.py +++ b/test/integration_selenium/test_history_export.py @@ -1,10 +1,10 @@ from .framework import ( selenium_test, - SeleniumTestCase, + SeleniumIntegrationTestCase, ) -class TestHistoryExport(SeleniumTestCase): +class TestHistoryExport(SeleniumIntegrationTestCase): ensure_registered = True @classmethod