Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions config/build/no_run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@
- fits_make # Test mode does not output .fits images.
- png_make # Test mode does not output .png images.
- examples/searches # Test mode breaks search visualization.
- ellipse/simulator # NEEDS_FIX 2026-04-24 - all ellipse examples parked pending JAX refactor; see PyAutoPrompt/autogalaxy/ellipse_no_run.md
- ellipse/fit # NEEDS_FIX 2026-04-24 - all ellipse examples parked pending JAX refactor; see PyAutoPrompt/autogalaxy/ellipse_no_run.md
- ellipse/modeling # NEEDS_FIX 2026-04-24 - all ellipse examples parked pending JAX refactor; see PyAutoPrompt/autogalaxy/ellipse_no_run.md
- ellipse/multipoles # NEEDS_FIX 2026-04-24 - all ellipse examples parked pending JAX refactor; see PyAutoPrompt/autogalaxy/ellipse_no_run.md
- ellipse/database # NEEDS_FIX 2026-04-24 - all ellipse examples parked pending JAX refactor; see PyAutoPrompt/autogalaxy/ellipse_no_run.md
- imaging/data_preparation/manual/mask_irregular # NEEDS_FIX 2026-04-10 - silent failure, needs investigation
- imaging/features/pixelization/modeling # NEEDS_FIX 2026-04-10 - LinAlgError: matrix not positive definite in pixelization modeling
- autogalaxy_workspace/scripts/imaging/modeling # NEEDS_FIX 2026-04-10 - KeyError on ('galaxies','galaxy','bulge','ell_comps'...) kwargs after API drift in top-level imaging/modeling.py
Expand Down
10 changes: 6 additions & 4 deletions scripts/ellipse/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@
"""
database_name = "ellipse"

if path.exists(Path("output") / f"{database_name}.sqlite"):
os.remove(Path("output") / f"{database_name}.sqlite")
sqlite_path = Path("output") / f"{database_name}.sqlite"
if sqlite_path.exists():
sqlite_path.unlink()

agg = af.Aggregator.from_database(
filename=f"{database_name}.sqlite", completed_only=False
Expand Down Expand Up @@ -237,8 +238,9 @@
"""
database_name = "ellipse_multipole"

if path.exists(Path("output") / f"{database_name}.sqlite"):
os.remove(Path("output") / f"{database_name}.sqlite")
sqlite_path = Path("output") / f"{database_name}.sqlite"
if sqlite_path.exists():
sqlite_path.unlink()

agg = af.Aggregator.from_database(
filename=f"{database_name}.sqlite", completed_only=False
Expand Down
Loading