Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sebi06 committed May 10, 2024
1 parent b5db6e8 commit cdb73b0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1,440 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,4 @@ data/CellDivision_T=10_Z=15_CH=2_DCV_small.czi
/data/Tumor_HE_Orig_small_SlidePreview.czi
/data/est_ngff_plate.zarr
/data/est_ngff_plate.zarr
*.old
**/czitools/*.old
22 changes: 22 additions & 0 deletions src/czitools/_tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import pytest
import pandas as pd


@pytest.fixture
def df():
dataframe = pd.DataFrame({"Time [s]": [1, 2, 3, 4], "Value": [10, 20, 30, 40]})
return dataframe


@pytest.fixture
def planetable():

pt = pd.DataFrame(
{
"Scene": [0, 0, 1, 1, 2],
"T": [0, 1, 2, 3, 4],
"Z": [0, 1, 3, 5, 7],
"C": [0, 1, 2, 3, 5],
}
)
return pt
Loading

0 comments on commit cdb73b0

Please sign in to comment.