File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 88 - Minimize async related changes to library code in this release.
99 - In sync environment use ` asyncio.run ` .
1010 - In async environment use background thread.
11+ - The default test manifests or directories now default to the ` ./specifications ` .
1112
1213## 2.0.4 - 2024-02-16
1314
Original file line number Diff line number Diff line change @@ -94,14 +94,14 @@ def main(self):
9494 # tests given on command line
9595 test_targets = self .options .tests
9696 else :
97- # default to find known sibling test dirs
97+ # default to find known test suite directories
9898 test_targets = []
99- sibling_dirs = [
99+ spec_dirs = [
100100 './specifications/json-ld-api/tests/' ,
101101 './specifications/json-ld-framing/tests/' ,
102102 './specifications/normalization/tests/' ,
103103 ]
104- for dir in sibling_dirs :
104+ for dir in spec_dirs :
105105 if os .path .exists (dir ):
106106 print ('Test dir found' , dir )
107107 test_targets .append (dir )
You can’t perform that action at this time.
0 commit comments