From 61aa25da8ffaefd8055bb4502d1afec84b184c0b Mon Sep 17 00:00:00 2001 From: SemyonSinchenko Date: Sat, 18 Nov 2023 21:49:13 +0000 Subject: [PATCH] Fix CI On branch feature/fix-tests Changes to be committed: modified: .github/workflows/ci.yml modified: Makefile --- .github/workflows/ci.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index beb251ea..3637d14e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: poetry-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies - run: make install_pure + run: make install_pytest if: steps.cache.outputs.cache-hit != 'true' - name: Change PySpark to version ${{ matrix.pyspark-version }} diff --git a/Makefile b/Makefile index 69b4d925..5e631c85 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # COMMON CLI COMMANDS FOR DEVELOPMENT -.PHONY: install_pure +.PHONY: install_pytest install_pure: - @poetry install + @poetry install --with=testing .PHONY: install_deps install_deps: