Skip to content

Commit 7cb7381

Browse files
authored
Merge branch 'RDFLib:master' into master
2 parents db6d3e3 + 5e5dcea commit 7cb7381

File tree

2,159 files changed

+920
-383
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,159 files changed

+920
-383
lines changed

test/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import pytest
22

3+
pytest.register_assert_rewrite("test.utils")
4+
35
from rdflib import Graph
46

57
from .data import TEST_DATA_DIR
@@ -9,7 +11,6 @@
911

1012
# This is here so that asserts from these modules are formatted for human
1113
# readibility.
12-
pytest.register_assert_rewrite("test.utils")
1314

1415

1516
@pytest.fixture(scope="session")

test/data/fetcher.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,17 @@ def _member_io(
203203
# NOTE: Commented out as this contains local modifications.
204204
# ArchiveResource(
205205
# remote="https://www.w3.org/2009/sparql/docs/tests/sparql11-test-suite-20121023.tar.gz",
206-
# local_path=(DATA_PATH / "suites" / "DAWG" / "data-sparql11"),
206+
# local_path=(DATA_PATH / "suites" / "w3c" / "sparql11"),
207207
# type=ArchiveType.TAR_GZ,
208208
# pattern=re.compile(r"^[^\/]+[\/](.+)$"),
209209
# ),
210+
# NOTE: Commented out as this contains local modifications.
211+
# ArchiveResource(
212+
# remote="https://www.w3.org/2001/sw/DataAccess/tests/data-r2.tar.gz",
213+
# local_path=(DATA_PATH / "suites" / "w3c" / "dawg-data-r2"),
214+
# type=ArchiveType.TAR_GZ,
215+
# pattern=re.compile(r"^[^\/]+[\/]data-r2[\/](.+)$"),
216+
# ),
210217
FileResource(
211218
remote=Request(
212219
"http://www.w3.org/2000/01/rdf-schema#", headers={"Accept": "text/turtle"}

0 commit comments

Comments
 (0)