We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pip
uv
1 parent b5e78b0 commit 2df3d78Copy full SHA for 2df3d78
2 files changed
.github/workflows/pr_check.yaml
@@ -25,10 +25,10 @@ jobs:
25
with:
26
enable-cache: true
27
- name: Install dependencies
28
- run: uv pip install --system -e ".[dev]"
+ run: uv sync --all-extras
29
- name: Run ruff linter
30
- run: uv run ruff check pyosmo/
+ run: uv run ruff check
31
- name: Run ruff formatter check
32
- run: uv run ruff format --check pyosmo/
+ run: uv run ruff format --check
33
- name: Test with pytest
34
run: uv run pytest pyosmo/tests/
model-creator/generator.py
@@ -426,4 +426,4 @@ def get_statistics(self) -> dict:
426
'state_variables': len(self.state_variables),
427
'login_actions': len([a for a in self.actions if a.get('is_login')]),
428
'logout_actions': len([a for a in self.actions if a.get('is_logout')]),
429
- }
+ }
0 commit comments