Skip to content

Commit

Permalink
#13 fix yet another error that only happens in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jgeluk committed Mar 7, 2022
1 parent f1bd3f6 commit ed33cf1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_maturity_model_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,14 @@ def test_pages_yaml(self, test_output_dir):

def test_maturity_model_parser_001(self, test_data_dir, test_output_dir):
docs_root = Path(f"{test_data_dir}/maturity-model/docs")
fragments_root = Path(f"{test_data_dir}/maturity-model/docs-fragments")
config = Config(
model_name="Test EKG/MM",
verbose=False,
mkdocs=False,
model_root=Path(f"{test_data_dir}/maturity-model"),
docs_root=docs_root,
fragments_root=(docs_root / '..' / 'docs-fragments').resolve(),
fragments_root=fragments_root,
output_root=Path(f"{test_output_dir}/ekgmm_test_001")
)
loader = MaturityModelLoader(config=config)
Expand Down

0 comments on commit ed33cf1

Please sign in to comment.