diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d510388..7fc699f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Build and test with Docker run: | docker build --tag scispacy . - docker run --rm scispacy pytest tests/ + docker run --rm scispacy pytest -vv tests/ docker run --rm scispacy flake8 scispacy docker run --rm scispacy black scispacy --check --line-length 88 docker run --rm scispacy bash scripts/mypy.sh diff --git a/.github/workflows/old_scipy.yaml b/.github/workflows/old_scipy.yaml index f4c963e..f904b6d 100644 --- a/.github/workflows/old_scipy.yaml +++ b/.github/workflows/old_scipy.yaml @@ -14,4 +14,4 @@ jobs: - name: Build and test with Docker using an older version of scipy run: | docker build --tag scispacy . - docker run --rm scispacy bash -c "pip install 'scipy<1.11' && pytest tests/" \ No newline at end of file + docker run --rm scispacy bash -c "pip install 'scipy<1.11' && pytest -vv tests/" \ No newline at end of file