All checks were successful
build / test (3.10) (push) Successful in 6s
build / test (3.11) (push) Successful in 6s
build / test (3.12) (push) Successful in 6s
build / test (3.13) (push) Successful in 6s
build / test (3.9) (push) Successful in 6s
build / lint (push) Successful in 7s
build / mypy (push) Successful in 8s
build / test (3.10) (release) Successful in 6s
build / test (3.11) (release) Successful in 6s
build / test (3.12) (release) Successful in 6s
build / test (3.13) (release) Successful in 6s
build / test (3.9) (release) Successful in 6s
build / lint (release) Successful in 8s
build / mypy (release) Successful in 8s
build / Build distributions (push) Successful in 7s
build / Build distributions (release) Successful in 8s
build / deploy (push) Has been skipped
build / deploy (release) Successful in 6s
19 lines
385 B
Python
19 lines
385 B
Python
import glob
|
|
|
|
import base
|
|
|
|
from parameterized import parameterized_class
|
|
|
|
exceptions = [
|
|
"testcases/wide_regs.rdl",
|
|
]
|
|
files = glob.glob("testcases/*.rdl")
|
|
files = [file for file in files if not file in exceptions]
|
|
|
|
@parameterized_class(base.get_permutations({
|
|
"rdl_file": files,
|
|
}))
|
|
class TestAll(base.BaseHeaderTestcase):
|
|
def test_all(self) -> None:
|
|
self.do_test()
|