Skip to content

Commit

Permalink
Merge pull request #380 from tyarkoni/split_pytest
Browse files Browse the repository at this point in the history
Split pytest into multiple calls to avoid memory limits
  • Loading branch information
adelavega committed Feb 20, 2020
2 parents b7088e0 + d9b1589 commit 39e9c2a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ before_script:
- python -m pliers.support.download
- python -m spacy download en_core_web_sm
script:
- py.test --pyargs pliers --cov-report term-missing --cov=pliers -m "not requires_payment"
- py.test pliers/tests/test_* --cov-report term-missing --cov=pliers -m "not requires_payment"
- py.test pliers/tests/extractors --cov-report term-missing --cov=pliers -m "not requires_payment" --cov-append
- py.test pliers/tests/converters --cov-report term-missing --cov=pliers -m "not requires_payment" --cov-append
- py.test pliers/tests/filters --cov-report term-missing --cov=pliers -m "not requires_payment" --cov-append
after_success:
- coveralls
before_cache:
Expand Down

0 comments on commit 39e9c2a

Please sign in to comment.