Skip to content

Commit 099c4df

Browse files
committed
Change sibling terminology and add mention in changelog
1 parent 52c41ad commit 099c4df

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
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

tests/runtests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)