From a9367ab7951451ddcf0384366a9dcb2ba794a379 Mon Sep 17 00:00:00 2001 From: Mahdi Ben Jelloul Date: Thu, 14 Nov 2024 12:30:30 +0100 Subject: [PATCH] Fix test call --- .github/workflows/workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 1afdb9e..bc7f483 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -96,7 +96,7 @@ jobs: key: build-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-${{ github.sha }}-${{ matrix.os }}-${{ matrix.openfisca-dependencies }} - run: | shopt -s globstar - openfisca test --country-package openfisca_tunisia tests/**/*.py + openfisca test --country-package openfisca_tunisia_pension tests/**/*.py if: matrix.openfisca-dependencies != 'minimal' || matrix.python-version != '3.9.9' test-path-length: @@ -143,7 +143,7 @@ jobs: echo "TEST_FILES_SUBLIST=$(python "${GITHUB_WORKSPACE}/.github/split_tests.py" ${CI_NODE_TOTAL} ${CI_NODE_INDEX})" >> $GITHUB_ENV - name: Run YAML test run: | - openfisca test --country-package openfisca_tunisia ${TEST_FILES_SUBLIST} + openfisca test --country-package openfisca_tunisia_pension ${TEST_FILES_SUBLIST} test-api: runs-on: ubuntu-20.04