Skip to content

Commit 727ac46

Browse files
copy parquet file in conftest
1 parent 6beaf23 commit 727ac46

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
**1.2.5 - 01/02/26**
1+
**1.2.5 - 01/05/26**
22

33
- Leverage vivarium_dependencies
4+
- Bugfix: copy parquet file in integration tests
45

56
**1.2.4 - 07/16/25**
67

tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def split_sample_data_dir_state_edit(tmpdir_factory, split_sample_data_dir):
105105
split_sample_data_dir / dataset_name / f"{dataset_name}_2.parquet",
106106
]
107107
for data_path in data_paths:
108-
data = pd.read_parquet(data_path)
108+
data = pd.read_parquet(data_path).copy()
109109
# We do not filter by state for SSA
110110
if dataset_name != DatasetNames.SSA:
111111
# Add a state so we can filter for integration tests

0 commit comments

Comments
 (0)