From a64055f237800b4e1427f566ebdb6c3875f1b3ac Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 2 Sep 2025 18:01:07 +0100 Subject: Merge, not concat, genotype frames. pd.concat duplicates the metadata columns, and is generally the wrong approach to the problem. --- tests/test_pyhegp.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/test_pyhegp.py') diff --git a/tests/test_pyhegp.py b/tests/test_pyhegp.py index 7989063..88f13ef 100644 --- a/tests/test_pyhegp.py +++ b/tests/test_pyhegp.py @@ -26,7 +26,6 @@ from hypothesis import given, settings, strategies as st from hypothesis.extra.numpy import arrays, array_shapes import numpy as np import pandas as pd -import pytest from pytest import approx from pyhegp.pyhegp import Stats, main, hegp_encrypt, hegp_decrypt, random_key, pool_stats, standardize, unstandardize, cat_genotype @@ -166,7 +165,6 @@ def catenable_genotype_frames(draw): for start, end in pairwise([0] + split_points + [len(sample_names)])] -@pytest.mark.xfail @given(catenable_genotype_frames()) def test_cat_genotype(genotypes): def metadata_columns(genotype): -- cgit 1.4.1