Skip to content

Commit

Permalink
removed commented code and code to exclude test from GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
RSWilson1 committed Feb 2, 2024
1 parent d60beef commit 9691b81
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_construct_vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), 'test_data')

IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true"

class TestConstructVCF(unittest.TestCase):
def setUp(self):
"""
Expand Down Expand Up @@ -186,7 +184,6 @@ def test_fetch_nucleotides_invalid_chr_number(self):
with pytest.raises(ValueError, match=expected_error):
result_df = vcf_obj.fetch_nucleotides(row, self.reference_path)

# @pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test doesn't work in Github Actions.")
def test_convert_bed_to_vcf(self):
"""
Tests if the convert_bed_to_vcf method returns the expected output
Expand Down

0 comments on commit 9691b81

Please sign in to comment.