Skip to content

Commit

Permalink
ssd: Detect whether file is on an SSD
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfstr committed Dec 9, 2023
1 parent 39b9366 commit 9996623
Show file tree
Hide file tree
Showing 5 changed files with 536 additions and 1 deletion.
26 changes: 25 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ sortedcontainers = "^2.4.0"
guppy3 = "^3.1.3"
xattr = { version = "^0.10.1", markers = "sys_platform == 'darwin'" }
psutil = { version = "^5.9.5", markers = "sys_platform == 'linux'" }
pywin32 = { version = "*", markers = "sys_platform == 'win32'" }
typing-extensions = "^4.8.0"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions src/crystal/tests/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
test_readonly_mode,
test_server,
test_shell,
test_ssd,
test_tasks,
test_tasktree,
test_workflows,
Expand Down Expand Up @@ -54,6 +55,7 @@ def _test_functions_in_module(mod) -> List[Callable]:
_test_functions_in_module(test_readonly_mode) +
_test_functions_in_module(test_server) +
_test_functions_in_module(test_shell) +
_test_functions_in_module(test_ssd) +
_test_functions_in_module(test_tasks) +
_test_functions_in_module(test_tasktree) +
_test_functions_in_module(test_workflows) +
Expand Down
Loading

0 comments on commit 9996623

Please sign in to comment.