Skip to content

Commit

Permalink
Merge pull request IBM#53 from IBM/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
vedem1192 committed Jun 21, 2023
2 parents 495e77a + 79af8f5 commit ebaa769
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 ebaa769

Please sign in to comment.