From 4647f2e09f3e5abea1f3bceb8fa28aa374249298 Mon Sep 17 00:00:00 2001 From: Antonio Scardace Date: Sun, 23 Jun 2024 11:18:50 +0200 Subject: [PATCH] update: GitHub Actions --- .github/workflows/ci-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 091e25c..5cd80e2 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -57,10 +57,10 @@ jobs: python-version: '3.9' - name: Install Python dependencies - run: pip install -r spark-metadata/requirements.txt + run: cd spark-metadata/ && pip install -r requirements.txt - name: Change the PythonPath run: echo "PYTHONPATH=$PYTHONPATH:$GITHUB_WORKSPACE/spark-metadata/src" >> $GITHUB_ENV - name: Run Python Tests - run: pytest spark-metadata/tests/ \ No newline at end of file + run: cd spark-metadata/ && pytest tests/ \ No newline at end of file