Skip to content

Commit

Permalink
fix(tests): disable broken generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored and florianfesti committed Nov 4, 2024
1 parent 99f526c commit eb5bbd8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ class TestSVG:

# Ignore multistep generators and generators which require input.
notTestGenerators = ('GridfinityTrayLayout', 'TrayLayout', 'TrayLayoutFile', 'TypeTray', 'Edges',)
brokenGenerators = ()
brokenGenerators = (
'Console', # Generated svg is different on windows and linux.
)
avoidGenerator = notTestGenerators + brokenGenerators

def test_generators_available(self) -> None:
Expand Down

0 comments on commit eb5bbd8

Please sign in to comment.