Move galaxy testing utilities into more sane package structure.

Split test/base into lib/galaxy_test/base and lib/galaxy_test/driver. Dividing things on whether they import galaxy-app code or not - with the goal of a galaxy-test-base package that doesn't depend on galaxy-app and a galaxy-test-driver package that does.

I've been refactoring around this division for a long time. Certain tests (namely the integration tests) always need to bootstrap Galaxy - but the API tests and the Selenium tests should be installable and runnable without Galaxy in the Python environment. So future galaxy-test-api and galaxy-test-selenium packages should have only an optional dependency on galaxy-test-driver.

Properly sturcturing these namespaces is a precursor for real packages on PyPI, clean separation of the tool shed testing code, and cleans up all the flake8 noqa hacks in test/.
This commit is contained in:
John Chilton
2019-11-12 09:03:06 -05:00
parent 1641dfe138
commit 45019c3fbd
109 changed files with 177 additions and 190 deletions
+2 -1
View File
@@ -5,7 +5,8 @@ galaxy_root = os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pa
sys.path[1:1] = [os.path.join(galaxy_root, "lib"), os.path.join(galaxy_root, "test")]
import pytest
from base import driver_util
from galaxy_test.driver import driver_util
SKIPTEST = os.path.join(os.path.dirname(__file__), 'known_broken_tools.txt')
TEST_PREFIX = 'TestForTool_'