Skip to content

Commit

Permalink
fixed peppy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Jul 18, 2024
1 parent fbe8f5a commit bf0bcce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements/requirements-all.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sqlalchemy>=2.0.0
logmuse>=0.2.7
peppy>=0.40.3
peppy>=0.40.4
ubiquerg>=0.6.2
coloredlogs>=15.0.1
pytest-mock
Expand Down
6 changes: 3 additions & 3 deletions tests/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def test_get_config(self, namespace, name):
tag="default",
)
ff = peppy.Project(get_path_to_example_file(namespace, name))
ff.description = description
ff.name = name
assert kk == ff.config
ff["_original_config"]["description"] = description
ff["_original_config"]["name"] = name
assert kk == ff["_original_config"]

@pytest.mark.parametrize(
"namespace, name",
Expand Down

0 comments on commit bf0bcce

Please sign in to comment.