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
2 changes: 1 addition & 1 deletion tests/test_agenda_budget.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


SAMPLE_AGENDA = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_agenda_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from pathlib import Path

# Force SQLite for tests
os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment

from contracts.agenda import ( # noqa: E402
AgendaReview,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_agenda_orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


SAMPLE_AGENDA_DICT = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_agenda_review_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import httpx

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


SAMPLE_AGENDA_DICT = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_agenda_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


SAMPLE_AGENDA_DICT = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_agenda_scope.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


MEDICAL_AGENDA = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_agenda_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


SAMPLE_AGENDA_DICT = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_direction_intake.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment

sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "scripts"))

Expand Down
2 changes: 1 addition & 1 deletion tests/test_evidence_gate.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


SAMPLE_AGENDA_DICT = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_evidence_gate_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


SAMPLE_AGENDA_DICT = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_manuscript_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import unittest
from pathlib import Path

os.environ.setdefault("DEEPGRAPH_DATABASE_URL", "")
os.environ["DEEPGRAPH_DATABASE_URL"] = "" # force SQLite tmpdir; never touch a real DB from the environment


class ManuscriptRoutesSmokeTests(unittest.TestCase):
Expand Down
Loading