Skip to content

Commit a1927a1

Browse files
committed
Fixed path
1 parent 24c9590 commit a1927a1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

conftest.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
from pathlib import Path
55

66
import docker
7-
from pytest import fixture, mark, skip
8-
from typer.testing import CliRunner
9-
107
from macrostrat.database import Database
118
from macrostrat.dinosaur.upgrade_cluster import database_cluster
129
from macrostrat.utils import get_logger, override_environment
10+
from pytest import fixture, mark, skip
11+
from typer.testing import CliRunner
1312

1413
runner = CliRunner()
1514

@@ -115,7 +114,7 @@ def load_config_module():
115114

116115
@fixture()
117116
def cfg():
118-
cfg_file = __here__ / "cli" / "tests" / "macrostrat.test.toml"
117+
cfg_file = __here__ / "macrostrat" / "cli" / "tests" / "macrostrat.test.toml"
119118
with override_environment(MACROSTRAT_CONFIG=str(cfg_file), NO_COLOR="1"):
120119
mod_instance = load_config_module()
121120

0 commit comments

Comments
 (0)