Skip to content

Commit

Permalink
Skip additional test on Windows due to GitHub Actions memory constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmezzetti committed Feb 6, 2023
1 parent e288b7b commit bb06a41
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/python/testworkflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def testChainWorkflow(self):
results = list(workflow2(workflow1([1, 2, 4, 8, 16, 32])))
self.assertEqual(results, [1, 3, 7, 15, 31, 63])

@unittest.skipIf(os.name == "nt", "testComplexWorkflow skipped on Windows")
def testComplexWorkflow(self):
"""
Tests a complex workflow
Expand Down

0 comments on commit bb06a41

Please sign in to comment.