Skip to content

Commit

Permalink
warnings not errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alanlujan91 committed Nov 21, 2024
1 parent 54a871f commit 78b73b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ scripts.test = "pytest {args}"
minversion = "6.0"
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = ["error"]
# filterwarnings = ["error"]
log_cli_level = "INFO"
testpaths = ["tests"]

Expand Down
4 changes: 3 additions & 1 deletion tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
class test_consumption_parsing(unittest.TestCase):
def setUp(self):
this_file_path = os.path.dirname(__file__)
consumer_yaml_path = os.path.join(this_file_path, "../models/consumer.yaml")
consumer_yaml_path = os.path.join(
this_file_path, "../src/HARK/models/consumer.yaml"
)

self.consumer_yaml_file = open(consumer_yaml_path, "r")

Expand Down

0 comments on commit 78b73b7

Please sign in to comment.