Skip to content

Commit

Permalink
test: removing skip as the vep parser logic is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
DSuveges committed Sep 27, 2024
1 parent 9035c84 commit 6c6918f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/gentropy/datasource/ensembl/test_vep_variants.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def _setup(self: TestVEPParserInSilicoExtractor, spark: SparkSession) -> None:

self.df = parsed_df

@pytest.mark.skip(reason="Not implemented.")
def test_in_silico_output_missing_value(
self: TestVEPParserInSilicoExtractor,
) -> None:
Expand Down Expand Up @@ -109,7 +108,6 @@ def _setup(self: TestVEPParser, spark: SparkSession) -> None:
self.raw_vep_output, 200
)

@pytest.mark.skip(reason="Not implemented.")
def test_extract_variant_index_from_vep(
self: TestVEPParser, spark: SparkSession
) -> None:
Expand Down Expand Up @@ -137,14 +135,12 @@ def test_extract_variant_index_from_vep(
== in_silico_schema
), "In silico schema is not correct."

@pytest.mark.skip(reason="Not implemented.")
def test_process(self: TestVEPParser) -> None:
"""Test process method."""
df = VariantEffectPredictorParser.process_vep_output(self.raw_vep_output)
assert isinstance(df, DataFrame), "Processed VEP output is not a DataFrame."
assert df.count() > 0, "No variant data in processed VEP dataframe."

@pytest.mark.skip(reason="Not implemented.")
def test_conversion(self: TestVEPParser) -> None:
"""Test if processed data can be converted into a VariantIndex object."""
variant_index = VariantIndex(
Expand All @@ -156,7 +152,6 @@ def test_conversion(self: TestVEPParser) -> None:
variant_index, VariantIndex
), "VariantIndex object not created."

@pytest.mark.skip(reason="Not implemented.")
def test_variant_count(self: TestVEPParser) -> None:
"""Test if the number of variants is correct.
Expand Down

0 comments on commit 6c6918f

Please sign in to comment.