aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAdam Janovsky2022-12-14 13:41:21 +0100
committerAdam Janovsky2022-12-14 13:41:21 +0100
commit7f5c7ba98c651bbf805546fb97e130b849298d89 (patch)
tree0a718de334be2f291eec8d44d6fe7bf6c1bf2a76 /.github/workflows
parent5e5e8dd8e52c60ce70eadf277142ab43632c506d (diff)
downloadsec-certs-7f5c7ba98c651bbf805546fb97e130b849298d89.tar.gz
sec-certs-7f5c7ba98c651bbf805546fb97e130b849298d89.tar.zst
sec-certs-7f5c7ba98c651bbf805546fb97e130b849298d89.zip
download spacy model in test pipeline
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 8f2a037c..316e8679 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -21,7 +21,9 @@ jobs:
pip install -r requirements/requirements.txt
pip install -r requirements/test_requirements.txt
- name: Install sec-certs
- run: pip install -e .
+ run: |
+ pip install -e .
+ python -m spacy download en_core_web_sm
- name: Run tests
run: pytest --cov=sec_certs tests
- name: Code coverage upload