-
-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1647 from vlomonaco/master
Improved Efficiency of the DiskUsage Metric
- Loading branch information
Showing
2 changed files
with
56 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
""" Disk Usage Metric Test""" | ||
|
||
import unittest | ||
|
||
from avalanche.evaluation.metrics import DiskUsage | ||
|
||
|
||
class DiskUsageTests(unittest.TestCase): | ||
def test_basic(self): | ||
"""just checking that directory size is computed without errors.""" | ||
|
||
disk = DiskUsage() | ||
disk.get_dir_size(".") | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |