The 'lib/cretonne' directory will be the new root of a stand-alone cretonne crate containg both Python and Rust sources. This is in preparation for publishing crates on crates.io.
9 lines
189 B
Python
9 lines
189 B
Python
from __future__ import absolute_import
|
|
import doctest
|
|
import constant_hash
|
|
|
|
|
|
def load_tests(loader, tests, ignore):
|
|
tests.addTests(doctest.DocTestSuite(constant_hash))
|
|
return tests
|