Skip to content

Commit

Permalink
Merge pull request IBM#52 from vedem1192/fix/integration-tests
Browse files Browse the repository at this point in the history
Removed async examples from integration testing
  • Loading branch information
vedem1192 committed Jun 21, 2023
2 parents d4894b8 + d57b335 commit 79af8f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

logger = logging.getLogger(__name__)

scripts = pathlib.Path(__file__, "..", "..", "..", "examples", "user").resolve().glob("*.py")
all_scripts = pathlib.Path(__file__, "..", "..", "..", "examples", "user").resolve().glob("*.py")
scripts = (l for l in all_scripts if "async_" not in l.name)


def idfn(val):
Expand Down

0 comments on commit 79af8f5

Please sign in to comment.