Skip to content
Snippets Groups Projects
Commit 52038906 authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Cleaned up paths to test data

parent 1defa474
No related branches found
No related tags found
No related merge requests found
from pathlib import Path
root = Path.home() / 'model-server' / 'resources'
root = Path.home() / 'model-server' / 'sessions'
subdirectories = {
'logs': 'logs',
......
from pathlib import Path
root = Path('c:/Users/rhodes/projects/proj0015-model-server/resources')
root = Path.home() / 'model-server' / 'testing'
filename = 'D3-selection-01.czi'
czifile = {
'filename': filename,
'path': root / 'testdata' / filename,
'path': root / filename,
'w': 1274,
'h': 1274,
'c': 5,
......
......@@ -6,6 +6,7 @@ from conf.testing import czifile, output_path
from model_server.image import CziImageFileAccessor, DataShapeError, InMemoryDataAccessor, write_accessor_data_to_file
class TestCziImageFileAccess(unittest.TestCase):
def setUp(self) -> None:
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment