diff --git a/proseco/tests/test_core.py b/proseco/tests/test_core.py index 9a560f4..c2973ab 100644 --- a/proseco/tests/test_core.py +++ b/proseco/tests/test_core.py @@ -48,10 +48,8 @@ def test_agasc_1p7(miniagasc_1p7): def test_agasc_supplement(): - assert len(bad_star_set) > 3300 + assert len(bad_star_set) > 300 assert 36178592 in bad_star_set # From original starcheck list - assert 658160 in bad_star_set - assert 1248994952 in bad_star_set def test_box_init(): diff --git a/ruff.toml b/ruff.toml index f6ef6ff..cad49f4 100644 --- a/ruff.toml +++ b/ruff.toml @@ -2,7 +2,7 @@ extend = "ruff-base.toml" # These are files to exclude for this project. extend-exclude = [ - # "**/*.ipynb", # commonly not ruff-compliant + "**/*.ipynb", # commonly not ruff-compliant ] # These are rules that commonly cause many ruff warnings. Code will be improved by