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.
1 parent 54741aa commit ee0d851Copy full SHA for ee0d851
tests/test_resources.py
@@ -99,7 +99,7 @@ def _supported(ep: ExecutorTestParams) -> bool:
99
def test_memory(execparams: ExecutorTestParams) -> None:
100
job = Job(JobSpec(executable='/bin/hostname', launcher=execparams.launcher))
101
assert job.spec is not None
102
- job.spec.resources = ResourceSpecV1(memory=1024 * 1024)
+ job.spec.resources = ResourceSpecV1(memory=1024 * 1024 * 100)
103
ex = _get_executor_instance(execparams, job)
104
ex.submit(job)
105
status = job.wait(timeout=_get_timeout(execparams))
0 commit comments