We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac2740b + 64b0633 commit 552827eCopy full SHA for 552827e
graphdatascience/session/session_sizes.py
@@ -45,6 +45,7 @@ class SessionMemory(Enum):
45
Enumeration representing session main memory configurations.
46
"""
47
48
+ m_2GB = SessionMemoryValue("2GB")
49
m_4GB = SessionMemoryValue("4GB")
50
m_8GB = SessionMemoryValue("8GB")
51
m_16GB = SessionMemoryValue("16GB")
graphdatascience/tests/unit/test_session_sizes.py
@@ -2,6 +2,6 @@
2
3
4
def test_all_values() -> None:
5
- assert len(SessionMemory.all_values()) == 13
+ assert len(SessionMemory.all_values()) == 14
6
for e in SessionMemory.all_values():
7
assert e.value.endswith("GB")
0 commit comments