Update poetry install command to exclude dev dependencies

This commit is contained in:
Nirant Kasliwal
2024-02-05 18:01:09 +05:30
parent f22383fcf3
commit 683fb1a6df

View File

@@ -38,7 +38,7 @@ jobs:
run: |
python -m pip install poetry
poetry config virtualenvs.create false
poetry install --no-interaction --no-ansi
poetry install --no-interaction --no-ansi --without dev
- name: Run tests
run: |
export IS_UBUNTU_CI=$(test "${{ matrix.os }}" = "ubuntu-latest" && echo "true" || echo "false")