Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi committed Mar 20, 2023
1 parent cbf9ad3 commit fbbe34d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tests/test_config_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
from schema import And, Optional, Or, Schema, Use
from datapackage import Package

from premise.ecoinvent_modification import (
LIST_IMAGE_REGIONS,
LIST_REMIND_REGIONS,
SUPPORTED_EI_VERSIONS,
)
from premise.utils import load_constants

config = load_constants()
LIST_REMIND_REGIONS = config["LIST_REMIND_REGIONS"]
LIST_IMAGE_REGIONS = config["LIST_IMAGE_REGIONS"]
SUPPORTED_EI_VERSIONS = config["SUPPORTED_EI_VERSIONS"]

FILEPATH_DATAPACKAGE_SCHEMA = "./datapackage.json"

Expand Down

0 comments on commit fbbe34d

Please sign in to comment.