Skip to content

Commit 31cd726

Browse files
committed
Remove trackster tests
1 parent 6ad8a74 commit 31cd726

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

test/unit/app/jobs/test_job_configuration.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,6 @@ def test_load_tool(self):
281281
assert baz_tool.handler == "special_handlers"
282282
assert baz_tool.destination == "bigmem"
283283

284-
def test_load_tool_params(self):
285-
self._with_advanced_config()
286-
foo_tool = self.job_config.tools["foo"][0]
287-
assert foo_tool.params["source"] == "trackster"
288-
289284
def test_limit_overrides(self):
290285
self._with_advanced_config()
291286
limits = self.job_config.limits
@@ -343,7 +338,6 @@ def test_container_tag_in_destination(self):
343338

344339
def test_tool_mapping_parameters(self):
345340
self._with_advanced_config()
346-
assert self.job_config.tools["foo"][-1].params["source"] == "trackster"
347341
assert self.job_config.tools["longbar"][-1].destination == "dynamic"
348342
assert self.job_config.tools["longbar"][-1].resources == "all"
349343
assert "resources" not in self.job_config.tools["longbar"][-1].params

test/unit/config/config_manage/1607_root_filters/config/galaxy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ paste.app_factory = galaxy.web.buildapp:app_factory
265265
# File containing old-style genome builds
266266
#builds_file_path = tool-data/shared/ucsc/builds.txt
267267

268-
# Directory where chrom len files are kept, currently mainly used by trackster
268+
# Directory where chrom len files are kept
269269
#len_file_path = tool-data/shared/ucsc/chrom
270270

271271
# Datatypes config file(s), defines what data (file) types are available in

test/unit/config/config_manage/1607_root_samples/config/galaxy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ paste.app_factory = galaxy.web.buildapp:app_factory
265265
# File containing old-style genome builds
266266
#builds_file_path = tool-data/shared/ucsc/builds.txt
267267

268-
# Directory where chrom len files are kept, currently mainly used by trackster
268+
# Directory where chrom len files are kept
269269
#len_file_path = tool-data/shared/ucsc/chrom
270270

271271
# Datatypes config file(s), defines what data (file) types are available in

test/unit/tool_util/toolbox/test_toolbox_filters.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,14 @@ def is_filtered(filters, trans, tool):
5656
return not all(_(context, tool) for _ in filters)
5757

5858

59-
def mock_tool(require_login=False, hidden=False, trackster_conf=False, allow_access=True):
59+
def mock_tool(require_login=False, hidden=False, allow_access=True):
6060
def allow_user_access(user, attempting_access):
6161
assert not attempting_access
6262
return allow_access
6363

6464
tool = Bunch(
6565
require_login=require_login,
6666
hidden=hidden,
67-
trackster_conf=trackster_conf,
6867
allow_user_access=allow_user_access,
6968
)
7069
return tool

0 commit comments

Comments
 (0)