-
Notifications
You must be signed in to change notification settings - Fork 6
/
sources.yml
60 lines (47 loc) · 1.28 KB
/
sources.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
# Each source will be passed to each suite for testing.
#
# Fields
# ------
# - name: identifier that will be displayed during pytest
# - path OR script: URI or a script to be run
# - connection: script that runs in the background and needs shutting down
# - skip: boolean for temporarily disabling a source
# Generally organized by speed
- name: create
script: ome_zarr_create
skip: False
- name: localfake1
path: data/64x64-fake-v0.1/0
skip: False
- name: localfake2
path: data/64x64-fake-v0.2/0
skip: False
- name: localfake3
path: data/64x64-fake-v0.3/0
skip: False
- name: remotefake1
path: https://uk1s3.embassy.ebi.ac.uk/idr/zarr/test-data/64x64-fake-v0.1/0
skip: False
- name: remotefake2
path: https://uk1s3.embassy.ebi.ac.uk/idr/zarr/test-data/64x64-fake-v0.2/0
skip: False
- name: idr6001240
path: https://uk1s3.embassy.ebi.ac.uk/idr/zarr/v0.1/6001240.zarr
skip: False
- name: bf2rawraw
script: bioformats2raw_fake
args:
- "--compression=raw"
- "--nested=true"
skip: False
- name: bf2rawcompressed
script: bioformats2raw_fake
args:
- "--compression=blosc"
- "--nested=true"
skip: False
- name: omeromszarr
script: omero_ms_zarr_fake
connection: http://localhost:8080/image/1.zarr/
skip: False