diff --git a/codecov.yml b/codecov.yml index 94b2fbd457..20c57638f3 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,9 +1,11 @@ -ignore_paths: +ignore: - "flytekit/bin" + - "flytekit/clis/**/*" - "test_*.py" - "flytekit/__init__.py" - "flytekit/extend/__init__.py" - "flytekit/testing/__init__.py" - - "tests/*" + - "tests/**/*" - "setup.py" - "plugins/tests/**/*" + - "plugins/**/setup.py" diff --git a/tests/flytekit/unit/experimental/test_eager_workflows.py b/tests/flytekit/unit/experimental/test_eager_workflows.py index f588c04db0..50ed29063c 100644 --- a/tests/flytekit/unit/experimental/test_eager_workflows.py +++ b/tests/flytekit/unit/experimental/test_eager_workflows.py @@ -16,7 +16,7 @@ from flytekit.types.structured import StructuredDataset DEADLINE = 2000 -INTEGER_ST = st.integers(max_value=10_000_000) +INTEGER_ST = st.integers(min_value=-10_000_000, max_value=10_000_000) @task