disable large models on non-ubuntu CI

This commit is contained in:
generall
2023-10-16 13:27:28 +02:00
parent 24dc24b02d
commit c719fc696d
2 changed files with 14 additions and 6 deletions

View File

@@ -39,5 +39,7 @@ jobs:
poetry config virtualenvs.create false
poetry install --no-interaction --no-ansi
- name: Run tests
run: pytest
run: |
export IS_UBUNTU_CI=$(test "${{ matrix.os }}" = "ubuntu-latest" && echo "true" || echo "false")
pytest
shell: bash