Skip to content

Commit

Permalink
Add dev dependencies for QA tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thalassemia committed Dec 8, 2024
1 parent 2b95c00 commit 5226b8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install model
run: USE_CYTHON=1 uv sync --frozen
run: USE_CYTHON=1 uv sync --frozen --extra dev
- name: Test with pytest
run: |
uv run --env-file .env pytest --cov-report xml:cov.xml --cov=ecoli --cov=reconstruction --cov=wholecell --cov=runscripts --durations=0
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install model
run: USE_CYTHON=1 uv sync --frozen
run: USE_CYTHON=1 uv sync --frozen --extra dev
- name: Mypy
run: |
uv run --env-file .env mypy
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install model
run: USE_CYTHON=1 uv sync --frozen
run: USE_CYTHON=1 uv sync --frozen --extra dev
- name: Ruff
run: |
uv run --env-file .env ruff check doc ecoli migration wholecell runscripts validation reconstruction

0 comments on commit 5226b8b

Please sign in to comment.