1
0
mirror of https://github.com/gryf/coach.git synced 2026-02-02 05:45:45 +01:00
Files
coach/rl_coach/tests/test_utils.py
2018-11-22 14:08:10 +02:00

18 lines
666 B
Python

import os
import pytest
import tempfile
from rl_coach import utils
@pytest.mark.unit_test
def test_get_checkpoint_state():
files = ['4.test.ckpt.ext', '2.test.ckpt.ext', '3.test.ckpt.ext', '1.test.ckpt.ext', 'prefix.10.test.ckpt.ext']
with tempfile.TemporaryDirectory() as temp_dir:
[open(os.path.join(temp_dir, fn), 'a').close() for fn in files]
checkpoint_state = utils.get_checkpoint_state(temp_dir)
assert checkpoint_state.model_checkpoint_path == os.path.join(temp_dir, '4.test.ckpt')
assert checkpoint_state.all_model_checkpoint_paths == \
[os.path.join(temp_dir, f[:-4]) for f in sorted(files[:-1])]