Updating lint stuff
CI / lint (push) Successful in 15s
CI / test (push) Failing after 15s

This commit is contained in:
Julian Piribauer
2026-07-29 19:50:10 +02:00
parent d7ed05771b
commit 91360457a4
3 changed files with 7 additions and 7 deletions
+5 -5
View File
@@ -1,22 +1,22 @@
import os
import pytest
from sage.all import * # noqa: F401,F403
from sage.all import * # noqa: F401
from sage.geometry.lattice_polytope import set_palp_dimension
load(os.path.join(os.path.dirname(__file__), "..", "sage", "toric_topdata.sage"))
load(os.path.join(os.path.dirname(__file__), "playground_models.sage"))
load(os.path.join(os.path.dirname(__file__), "test_models.sage"))
set_palp_dimension(11)
PLAYGROUND_MODELS = [pytest.param(*row[1:], id=row[0]) for row in PLAYGROUND_MODEL_FACTORIES] # noqa: F821
TEST_MODELS_PARAMETRISED = [pytest.param(*row[1:], id=row[0]) for row in TEST_MODELS]
@pytest.mark.parametrize(
"make_model, expected_cy_dimension, expected_no_divs, expected_disc, expected_intersection_numbers_CY",
PLAYGROUND_MODELS,
TEST_MODELS_PARAMETRISED,
)
def test_playground_models_disc_and_topdata(
def test_topdata_and_disc(
make_model,
expected_cy_dimension,
expected_no_divs,