Skip to content

Commit

Permalink
skipped a test for a functionality that is not implemented yet
Browse files Browse the repository at this point in the history
  • Loading branch information
Jgmedina95 committed Jan 21, 2024
1 parent d014ff7 commit ebe3512
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_fxns.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,14 @@ def test_write_file_name_simulation_with_conditions(path_registry):
conditions="pH7",
time_stamp="20240109",
)
assert file_name == "MD_1XYZ_pH7_20240109"
assert file_name == "MD_1XYZ_pH7_20240109.py"


def test_write_file_name_simulation_modified(path_registry):
file_name = path_registry.write_file_name(
FileType.SIMULATION, Sim_id="SIM456", modified=True, time_stamp="20240109"
)
assert file_name == "SIM456_MOD_20240109"
assert file_name == "SIM456_MOD_20240109.py"


def test_write_file_name_simulation_default(path_registry):
Expand All @@ -226,9 +226,10 @@ def test_write_file_name_simulation_default(path_registry):
protein_file_id="123",
time_stamp="20240109",
)
assert file_name == "MD_123_20240109"
assert file_name == "MD_123_20240109.py"


@pytest.mark.skip(reason="not implemented for record files")
def test_write_file_name_record(path_registry):
file_name = path_registry.write_file_name(
FileType.RECORD, protein_file_id="123", Sim_id="SIM456", time_stamp="20240109"
Expand Down

0 comments on commit ebe3512

Please sign in to comment.