Skip to content

Commit

Permalink
🩹 Rename tests to actually run
Browse files Browse the repository at this point in the history
Prefix with test_
  • Loading branch information
jsnel committed Jul 14, 2024
1 parent 9fb2e27 commit cfafdda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/model/test_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,15 +228,15 @@ def check_expressions(parameters):
check_expressions(parameters)


def initial_parameters_b_first():
def test_add_to_initial_b_first():
return _test_add_to_initial(Parameters.from_dict({**B_DICT, **RATES_DICT}))


def initial_parameters_b_last():
def test_add_to_initial_b_last():
return _test_add_to_initial(Parameters.from_dict({**RATES_DICT, **B_DICT}))


if __name__ == "__main__":
for _ in range(1000):
initial_parameters_b_first()
initial_parameters_b_last()
test_add_to_initial_b_first()
test_add_to_initial_b_last()

0 comments on commit cfafdda

Please sign in to comment.