Skip to content

Commit f8bb5b1

Browse files
committed
Fix config
1 parent 16bd30a commit f8bb5b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ addopts = ["--import-mode=importlib"]
3737
[tool.mypy]
3838
ignore_missing_imports = true
3939
# Folders to exclude
40-
exclude = ["docs/", "build/", "tests"]
40+
exclude = ["docs/build/", "build/"]
4141
# Folder to check with mypy
4242
files = ["src"]
4343

tests/test_Y_bifurcation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55

66
@pytest.mark.parametrize("gdim", [2, 3])
7-
@pytest.mark.parametrize("lcar", [1, 0.5, 0.1])
8-
def test_Y_bifurcation(gdim, lcar):
7+
@pytest.mark.parametrize("lcar", [1.0, 0.5, 0.1])
8+
def test_Y_bifurcation(gdim: int, lcar: float):
99
# Create Y bifurcation graph
1010
G = network_generation.make_tree(n=2, H=1, W=1, dim=gdim)
1111
config = Config()

0 commit comments

Comments
 (0)