pqc/test/test_compile_lib.py
Thom Wiggers 75be658074
Clean up tests
Modify the tests to no longer construct the classes multiple times and
to have them make use of the new helpers.make() function.
2019-03-04 17:02:46 +01:00

27 lines
552 B
Python

"""
Checks that the archive library can be successfully built for every
scheme/implementation.
"""
import pqclean
import helpers
def test_compile_lib():
for scheme in pqclean.Scheme.all_schemes():
for implementation in scheme.implementations:
yield check_compile_lib, implementation
def check_compile_lib(implementation):
helpers.make(working_dir=implementation.path())
if __name__ == '__main__':
try:
import nose2
nose2.main()
except ImportError:
import nose
nose.runmodule()