From 2c211095d7034d0914c9d602451f83cf7e9abd41 Mon Sep 17 00:00:00 2001 From: kba Date: Wed, 5 Nov 2025 15:02:55 +0100 Subject: [PATCH] make deps-test should not depend on the models --- .github/workflows/test-eynollah.yml | 7 +++++++ Makefile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-eynollah.yml b/.github/workflows/test-eynollah.yml index 47be056..2fb9f4b 100644 --- a/.github/workflows/test-eynollah.yml +++ b/.github/workflows/test-eynollah.yml @@ -54,6 +54,13 @@ jobs: with: python-version: ${{ matrix.python-version }} + # - uses: actions/cache@v4 + # with: + # path: | + # path/to/dependencies + # some/other/dependencies + # key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} + - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/Makefile b/Makefile index 8744d0a..2c79304 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ install: install-dev: $(PIP) install -e .$(and $(EXTRAS),[$(EXTRAS)]) -deps-test: $(EYNOLLAH_MODELS_ZIP) +deps-test: $(PIP) install -r requirements-test.txt smoke-test: TMPDIR != mktemp -d