ct2rs 0.9.18

Rust bindings for OpenNMT/CTranslate2
Documentation
1
2
3
4
5
6
7
8
9
10
import shutil

import pytest


@pytest.fixture
def tmp_dir(tmpdir_factory):
    path = tmpdir_factory.mktemp("workspace")
    yield path
    shutil.rmtree(path)