From 6512f562aabc99688b45a139f5b8059ba5b41f35 Mon Sep 17 00:00:00 2001 From: mivanit Date: Wed, 19 Jul 2023 16:47:09 -0400 Subject: [PATCH] added all-extras to poetry install in github workflow we need the "torch" extra in order for the tests to run --- .github/workflows/checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index de965804..11429c89 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -47,7 +47,7 @@ jobs: run: | curl -sSL https://install.python-poetry.org | python3 - poetry lock --check - poetry install + poetry install --all-extras - name: tests run: make test