Skip to content

Commit c2d85b4

Browse files
authored
Merge pull request #1838 from gjhiggins/test-reorg
test re-org merging this with only one review as it only changes tests and coverage does not decrease.
2 parents 6f2c11c + d741814 commit c2d85b4

File tree

4,206 files changed

+1756
-1708
lines changed

Some content is hidden

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

4,206 files changed

+1756
-1708
lines changed

test/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from rdflib import Graph
44

5-
from .data import CONSISTENT_DATA_DIR
5+
from .data import TEST_DATA_DIR
66
from .earl import EarlReporter
77

88
pytest_plugins = [EarlReporter.__module__]
@@ -14,4 +14,4 @@
1414

1515
@pytest.fixture(scope="session")
1616
def rdfs_graph() -> Graph:
17-
return Graph().parse(CONSISTENT_DATA_DIR / "rdfs.ttl", format="turtle")
17+
return Graph().parse(TEST_DATA_DIR / "rdfs.ttl", format="turtle")

test/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from rdflib import URIRef
44

55
TEST_DIR = Path(__file__).parent
6-
CONSISTENT_DATA_DIR = TEST_DIR / "consistent_test_data"
6+
TEST_DATA_DIR = TEST_DIR / "data"
77

88
alice_uri = URIRef("http://example.org/alice")
99
bob_uri = URIRef("http://example.org/bob")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)