Skip to content

Commit 1a569b4

Browse files
Fix: Update package installation and fix linting issues
Co-Authored-By: [email protected] <[email protected]>
1 parent ac0ccbc commit 1a569b4

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/python-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
else
9393
. ../../.venv/bin/activate
9494
fi
95-
uv pip install -e .
95+
uv pip install -e . -e ../selfie-lib
9696
uv pip install -r requirements.txt -r dev-requirements.txt
9797
9898
- name: pytest-selfie - pytest
@@ -137,7 +137,7 @@ jobs:
137137
else
138138
. ../../.venv/bin/activate
139139
fi
140-
uv pip install -e .
140+
uv pip install -e . -e ../selfie-lib -e ../pytest-selfie
141141
uv pip install -r requirements.txt -r dev-requirements.txt
142142
143143
- name: example-pytest-selfie - pytest
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
file:../selfie-lib
21
pytest>=8.0.0,<9.0.0

python/pytest-selfie/tests/test_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class MockConfig(Config): # type: ignore
1313
def __init__(self, tmp_path: Path):
1414
self._rootpath = tmp_path
1515

16-
def getoption(self, name: str, default: Any = None, skip: bool = False) -> Any: # type: ignore[override]
16+
def getoption(self, _name: str, default: Any = None, _skip: bool = False) -> Any: # type: ignore[override]
1717
return default
1818

1919
@property

0 commit comments

Comments
 (0)