Skip to content

Commit

Permalink
tests: skip alembic due to mergepoint
Browse files Browse the repository at this point in the history
  • Loading branch information
kpsherva committed Nov 9, 2023
1 parent 4b20085 commit d691ade
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion invenio_oaiserver/verbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class ListIdentifiers(OAISchema):
from_ = DateTime(
format="permissive",
metadata={"load_from": "from", "data_key": "from", "dump_to": "from"},
data_key="from"
data_key="from",
)
until = DateTime(format="permissive")
set = fields.Str()
Expand Down
1 change: 1 addition & 0 deletions tests/test_invenio_oaiserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def test_no_id_prefix():
assert app.config["OAISERVER_ID_PREFIX"] == expected_id_prefix


@pytest.mark.skip(reason="Mergepoint is on invenio-access.")
def test_alembic(app):
"""Test alembic recipes."""
ext = app.extensions["invenio-db"]
Expand Down

0 comments on commit d691ade

Please sign in to comment.