mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
48 lines
747 B
Python
Executable file
48 lines
747 B
Python
Executable file
"""
|
|
<Program Name>
|
|
aggregate_tuf.tests.py
|
|
|
|
<Author>
|
|
Konstantin Andrianov
|
|
|
|
<Started>
|
|
Jamuary 26, 2013
|
|
|
|
<Copyright>
|
|
See LICENSE for licensing information.
|
|
|
|
<Purpose>
|
|
Run all tuf.tests.
|
|
|
|
"""
|
|
# Run test_updater.py.
|
|
import tuf.tests.test_updater
|
|
|
|
# Run test_quickstart.
|
|
#import tuf.tests.test_quickstart
|
|
|
|
# Run test_sig.py.
|
|
#import tuf.tests.test_sig
|
|
|
|
# Run test_rsa_key.py.
|
|
#import tuf.tests.test_rsa_key
|
|
|
|
# Run test_keystore.py.
|
|
#import tuf.tests.test_keystore
|
|
|
|
# Run test_signerlib.py.
|
|
#import tuf.tests.test_signerlib
|
|
|
|
# Run test_signercli.py.
|
|
import tuf.tests.test_signercli
|
|
|
|
# Run test_download.py
|
|
#import tuf.tests.test_download
|
|
|
|
# Run test_hash.py
|
|
#import tuf.tests.test_hash
|
|
|
|
# Run test_mirrors.py.
|
|
#import tuf.tests.test_mirrors
|
|
|
|
|