Skip to content

Commit

Permalink
Fixed an error
Browse files Browse the repository at this point in the history
  • Loading branch information
davenquinn committed Dec 24, 2024
1 parent a0cf97b commit 06aebc2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion database/macrostrat/database/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,14 @@ def run_fixtures(connectable, fixtures: Union[Path, list[Path]], params=None, **
for fixture in files:
fn = fixture.relative_to(prefix)
console.print(f"[cyan bold]{fn}[/]")
run_sql_file(connectable, fixture, params, **kwargs)
run_sql_file(
connectable,
fixture,
params,
output_mode=output_mode,
output_file=output_file,
**kwargs,
)
console.print()


Expand Down
2 changes: 1 addition & 1 deletion database/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Daven Quinn <[email protected]>"]
description = "A SQLAlchemy-based database toolkit."
name = "macrostrat.database"
packages = [{ include = "macrostrat" }]
version = "3.5.3"
version = "3.5.4"

[tool.poetry.dependencies]
GeoAlchemy2 = "^0.15.2"
Expand Down
2 changes: 1 addition & 1 deletion dinosaur/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 06aebc2

Please sign in to comment.