Coverage for tests/test_hypo_jci.py: 100%
8 statements
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-30 09:04 +0000
« prev ^ index » next coverage.py v7.2.2, created at 2023-03-30 09:04 +0000
1from hypothesis import given, strategies as st, settings, HealthCheck
3from jaypore_ci.clean import allowed_alphabet
6@given(st.text(alphabet=allowed_alphabet, min_size=1))
7@settings(suppress_health_check=[HealthCheck.function_scoped_fixture], deadline=500)
8def test_hypo_jobs(pipeline, name):
9 pipeline = pipeline()
10 with pipeline as p:
11 p.job(name, name)