Skip to content

fixing data_directory not actually changing download directory and enforced spacy and thinc version requirements #1031

fixing data_directory not actually changing download directory and enforced spacy and thinc version requirements

fixing data_directory not actually changing download directory and enforced spacy and thinc version requirements #1031

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
mongodb-version: [5.0.2]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install convokit[craft]
python -m spacy download en_core_web_sm
- name: Run tests
run: |
python -m pip install -r requirements-dev.txt
python convokit/tests/run_all_tests.py