All checks were successful
build / build (push) Successful in 2m18s
- basic generation of json files
- supported parsers:
- healthcheck
- result-detail
- result-status
- file
- log
- dummy
- keyword (keyword, clangtidy, cppcheck, cpplint)
- diff
- `convert` functions is mature, tested in engr151-24fa last two homeworks and engr151-24fa p3
- teapot and healthcheck should be up to date
Co-authored-by: Boming Zhang <bomingzh@sjtu.edu.cn>
Reviewed-on: https://focs.ji.sjtu.edu.cn/git/JOJ/JOJ3-config-generator/pulls/10
Reviewed-by: Boming Zhang <bomingzh@sjtu.edu.cn>
Co-authored-by: jon-lee <jon-lee@sjtu.edu.cn>
Co-committed-by: jon-lee <jon-lee@sjtu.edu.cn>
30 lines
437 B
Python
30 lines
437 B
Python
from tests.convert.utils import load_case
|
|
|
|
|
|
def test_basic() -> None:
|
|
load_case("basic")
|
|
|
|
|
|
def test_clang_tidy() -> None:
|
|
load_case("clang-tidy")
|
|
|
|
|
|
def test_cppcheck() -> None:
|
|
load_case("cppcheck")
|
|
|
|
|
|
def test_cpplint() -> None:
|
|
load_case("cpplint")
|
|
|
|
|
|
def test_diff() -> None:
|
|
load_case("diff")
|
|
|
|
|
|
def test_keyword() -> None:
|
|
load_case("keyword")
|
|
|
|
|
|
def test_result_detail() -> None:
|
|
load_case("result-detail")
|