Skip to content

Commit

Permalink
Fix CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thalassemia committed Dec 8, 2024
1 parent 2308bdf commit e28883a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Build documentation
run: |
cd doc
make html
uv run make html
- name: Deploy documentation to GitHub pages
run: |
cd doc/_build/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
- name: Build documentation
run: |
cd doc
make html
uv run make html
2 changes: 1 addition & 1 deletion .github/workflows/pr_tests.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: uv sync --frozen
run: USE_CYTHON=1 uv sync --frozen
- name: Test ParCa reproducibility
run: |
uv run --env-file .env runscripts/parca.py --config ecoli/composites/ecoli_configs/run_parca.json \
Expand Down
4 changes: 2 additions & 2 deletions ecoli/analysis/single/mass_fraction_summary.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from typing import Any, cast
from typing import Any

from duckdb import DuckDBPyConnection
import polars as pl
Expand Down Expand Up @@ -50,7 +50,7 @@ def plot(
)

fractions = {
k: (mass_data[v] / mass_data["listeners__mass__dry_mass"]).mean()
k: float((mass_data[v] / mass_data["listeners__mass__dry_mass"]).mean())
for k, v in mass_columns.items()
}
new_columns = {
Expand Down

0 comments on commit e28883a

Please sign in to comment.