1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00

Call nose differently and add test documentation

This commit is contained in:
Douglas Stebila 2019-02-13 22:31:37 -05:00
parent 012b96c519
commit 72d514a6fe
4 changed files with 13 additions and 1 deletions

View File

@ -77,7 +77,7 @@ matrix:
script: script:
- make ${MAKETARGET} - make ${MAKETARGET}
- cd test && nosetests -v - cd test && python3 -m nose -v
cache: pip cache: pip

View File

@ -1,3 +1,7 @@
"""
Checks that the archive library can be successfully built for every scheme/implementation.
"""
import os import os
import pqclean import pqclean
import helpers import helpers

View File

@ -1,3 +1,7 @@
"""
Checks that the functional test program (functest) can be successfully built and executed for every scheme/implementation.
"""
import os import os
import pqclean import pqclean
import helpers import helpers

View File

@ -1,3 +1,7 @@
"""
Checks that a LICENSE or LICENSE.txt file is present for every implementation of the specified scheme.
"""
import os import os
import pqclean import pqclean