Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test re-org #1838

Merged
merged 7 commits into from Apr 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 2 additions & 2 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from rdflib import Graph

from .data import CONSISTENT_DATA_DIR
from .data import TEST_DATA_DIR
from .earl import EarlReporter

pytest_plugins = [EarlReporter.__module__]
Expand All @@ -14,4 +14,4 @@

@pytest.fixture(scope="session")
def rdfs_graph() -> Graph:
return Graph().parse(CONSISTENT_DATA_DIR / "rdfs.ttl", format="turtle")
return Graph().parse(TEST_DATA_DIR / "rdfs.ttl", format="turtle")
2 changes: 1 addition & 1 deletion test/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from rdflib import URIRef

TEST_DIR = Path(__file__).parent
CONSISTENT_DATA_DIR = TEST_DIR / "consistent_test_data"
TEST_DATA_DIR = TEST_DIR / "data"

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