Skip to content

Commit

Permalink
حفظ العمل
Browse files Browse the repository at this point in the history
  • Loading branch information
vzool committed Dec 11, 2024
1 parent 538bbf8 commit 81e5fc9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zakat/zakat_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2603,6 +2603,8 @@ def test(debug: bool = False) -> bool:
class Account(db.Entity):
_table_ = 'account'
id = pony.PrimaryKey(int, auto=True)
# When changed to Str the tests duration changed as following:
# - macOS(intel) 15.1.1 increased from 5 seconds to 01:30 minutes.
name = pony.Optional(pony.LongStr, unique=True)
balance = pony.Optional(int, size=64, default=0)
count = pony.Optional(int, size=64, default=0)
Expand Down

0 comments on commit 81e5fc9

Please sign in to comment.