Run test suites
(context: Context, no_cov: bool = False)
| 133 | |
| 134 | @task |
| 135 | def test_py(context: Context, no_cov: bool = False): |
| 136 | """Run test suites""" |
| 137 | in_py( |
| 138 | context, |
| 139 | f"hatch run {'test' if no_cov else 'cov'} --maxfail=3 --reruns=3", |
| 140 | ) |
| 141 | |
| 142 | |
| 143 | @task(pre=[env_js]) |