Skip to content

Commit ebaa769

Browse files
authored
Merge pull request IBM#53 from IBM/develop
Develop
2 parents 495e77a + 79af8f5 commit ebaa769

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/test_examples.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
logger = logging.getLogger(__name__)
88

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

1112

1213
def idfn(val):

0 commit comments

Comments
 (0)