Skip to content
Snippets Groups Projects
Commit b5c057e2 authored by David Douard's avatar David Douard
Browse files

sql: move log-schema.sql in the package

related to T1265.
parent 4ebfdeed
No related branches found
No related tags found
No related merge requests found
......@@ -2,3 +2,4 @@ include Makefile
include requirements.txt
include requirements-swh.txt
include version.txt
recursive-include swh/core/sql *.sql
......@@ -83,7 +83,7 @@ def stringify(value):
class PostgresHandler(logging.Handler):
"""log handler that store messages in a Postgres DB
See swh-core/sql/log-schema.sql for the DB schema.
See swh-core/swh/core/sql/log-schema.sql for the DB schema.
All logging methods can be used as usual. Additionally, arbitrary metadata
can be passed to logging methods, requesting that they will be stored in
......
File moved
from os import path
import swh.indexer
SQL_DIR = path.join(path.dirname(swh.core.__file__), 'sql')
......@@ -12,15 +12,13 @@ from nose.plugins.attrib import attr
from swh.core.logger import PostgresHandler
from swh.core.tests.db_testing import SingleDbTestFixture
TEST_DIR = os.path.dirname(os.path.abspath(__file__))
SQL_DIR = os.path.join(TEST_DIR, '../../../sql')
from swh.core.tests import SQL_DIR
@attr('db')
class PgLogHandler(SingleDbTestFixture, unittest.TestCase):
TEST_DB_DUMP = os.path.join(SQL_DIR, 'log-schema.sql')
TEST_DB_DUMP_TYPE = 'psql'
def setUp(self):
super().setUp()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment