We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 459f4d4 commit dc97488Copy full SHA for dc97488
tests/test_importer.py
@@ -29,10 +29,10 @@
29
30
@pytest.fixture
31
def config(tmp_path: Path) -> Config:
32
- mongo_config = MongoConfig("localhost", 27017)
33
- elasticsearch_config = ElasticsearchConfig(["http://localhost:9200"])
+ mongo_config = MongoConfig("mongo", 27017)
+ elasticsearch_config = ElasticsearchConfig(["http://es:9200"])
34
portal_config = PortalConfig(
35
- "http://10.0.11.20", "postgres://ckan:password@db/ckan", "admin"
+ "http://localhost", "postgres://ckan:password@db/ckan", "admin"
36
)
37
return Config(
38
data_path=tmp_path / "data",
0 commit comments