Skip to content

Commit 2148df5

Browse files
committed
fix(fixture): use confs_path fixture instead of conf_path
1 parent d0f9761 commit 2148df5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
- id: mixed-line-ending
1818
- id: trailing-whitespace
1919
- repo: https://github.com/astral-sh/ruff-pre-commit
20-
rev: v0.3.2
20+
rev: v0.3.3
2121
hooks:
2222
- id: ruff
2323
- id: ruff-format

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pytest = "^8.1.1"
4444
pytest-cov = "^4.1.0"
4545
pytest-xdist = "^3.5.0"
4646
pandera = { extras = ["mypy"], version = "^0.18.3" }
47-
ruff = "^0.3.2"
47+
ruff = "^0.3.3"
4848

4949
[tool.poetry.group.commits.dependencies]
5050
commitizen = "^3.18.3"

tests/test_scripts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ def test_schema(capsys: pc.CaptureFixture[str]) -> None:
3535
),
3636
],
3737
)
38-
def test_main(scenario: str, conf_path: str, extra_config: str) -> None:
38+
def test_main(scenario: str, confs_path: str, extra_config: str) -> None:
3939
# given
40-
folder = os.path.join(conf_path, scenario)
40+
folder = os.path.join(confs_path, scenario)
4141
confs = list(sorted(os.listdir(folder)))
4242
# when
4343
for conf in confs: # one job per config

0 commit comments

Comments
 (0)