Skip to content

Commit

Permalink
Unskip all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef-Friedrich committed Feb 4, 2024
1 parent b2f7514 commit ff999bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"--rootdir",
"${workspaceFolder}/tests",
"-m",
"not slow"
"not (slow or gui)"
]
}
9 changes: 0 additions & 9 deletions tests/test_how_to.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,6 @@ def test_set_musical_text_font(self) -> None:
assert c.post.style.get("musicalTextFont") == "MScore Text"


@pytest.mark.skip(
"Strange error! Fails in tox make test ... but works in vscode and with pytest -k test_set_meta_tag_title"
)
def test_set_all_font_faces_using_for_loop(score: Score) -> None:
assert score.style.get("defaultFontFace") == "FreeSerif"

Expand All @@ -248,9 +245,6 @@ def test_set_all_font_faces_using_for_loop(score: Score) -> None:
assert new_score.style.get("defaultFontFace") == "Alegreya"


@pytest.mark.skip(
"Strange error! Fails in tox make test ... but works in vscode and with pytest -k test_set_meta_tag_title"
)
def test_set_all_font_faces_using_method(score: Score) -> None:
assert score.style.get("defaultFontFace") == "FreeSerif"

Expand Down Expand Up @@ -381,9 +375,6 @@ def print_elements(element: _Element, level: int) -> None:
print_elements(score.xml_root, 0)


@pytest.mark.skip(
"Strange error! Fails in tox make test ... but works in vscode and with pytest -k test_set_meta_tag_title"
)
def test_set_meta_tag_composer(score: Score) -> None:
assert score.meta.metatag.composer == "Composer"

Expand Down

0 comments on commit ff999bf

Please sign in to comment.