Execute the tests.
(ctx)
| 876 | |
| 877 | @Builder.set(Steps.TESTS) |
| 878 | def bc_run_tests(ctx): |
| 879 | """Execute the tests.""" |
| 880 | ctx.build.wants(Steps.NPM_CACHE, ctx) |
| 881 | ctx.build.wants(Steps.BUILD_TESTS, ctx) |
| 882 | cmd = _container_cmd( |
| 883 | ctx, |
| 884 | [ |
| 885 | "bash", |
| 886 | "-c", |
| 887 | f"cd {ctx.cli.homedir} && source ./run-make-check.sh && build tests && run", |
| 888 | ], |
| 889 | ) |
| 890 | with ctx.user_command(): |
| 891 | _run(cmd, check=True, ctx=ctx) |
| 892 | |
| 893 | |
| 894 | @Builder.set(Steps.SOURCE_RPM) |
nothing calls this directly
no test coverage detected