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

IOP Spider: improve and add tests #206

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ env:
- SUITE=functional_desy
- SUITE=functional_cds
- SUITE=functional_pos
- SUITE=functional_iop

matrix:
fast_finish: true
Expand Down
7 changes: 7 additions & 0 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@ services:
http-server.local:
condition: service_healthy

functional_iop:
<<: *service_base
command: py.test -vv tests/functional/iop
depends_on:
scrapyd:
condition: service_healthy

unit:
<<: *service_base
command: bash -c "py.test tests/unit -vv && make -C docs clean && make -C docs html && python setup.py sdist && ls dist/*"
Expand Down
158 changes: 0 additions & 158 deletions hepcrawl/extractors/nlm.py

This file was deleted.

1 change: 1 addition & 0 deletions hepcrawl/parsers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
from __future__ import absolute_import, division, print_function

from .jats import JatsParser
from .nlm import NLMParser
Loading