Skip to content

Commit

Permalink
Fix: Update package installation and fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] and nedtwigg committed Dec 11, 2024
1 parent ac0ccbc commit 1a569b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
else
. ../../.venv/bin/activate
fi
uv pip install -e .
uv pip install -e . -e ../selfie-lib
uv pip install -r requirements.txt -r dev-requirements.txt
- name: pytest-selfie - pytest
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
else
. ../../.venv/bin/activate
fi
uv pip install -e .
uv pip install -e . -e ../selfie-lib -e ../pytest-selfie
uv pip install -r requirements.txt -r dev-requirements.txt
- name: example-pytest-selfie - pytest
Expand Down
1 change: 0 additions & 1 deletion python/pytest-selfie/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
file:../selfie-lib
pytest>=8.0.0,<9.0.0
2 changes: 1 addition & 1 deletion python/pytest-selfie/tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MockConfig(Config): # type: ignore
def __init__(self, tmp_path: Path):
self._rootpath = tmp_path

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

@property
Expand Down

0 comments on commit 1a569b4

Please sign in to comment.