diff --git a/.github/workflows/workflow-lint-test-python.yml b/.github/workflows/workflow-lint-test-python.yml index 10a0376..50739e4 100644 --- a/.github/workflows/workflow-lint-test-python.yml +++ b/.github/workflows/workflow-lint-test-python.yml @@ -56,7 +56,8 @@ jobs: - name: Test with pytest run: | - python -m pytest + project_path="${{ inputs.project-path || '.' }}" + python -m pytest $project_path - name: Run tests with coverage (coverage must be at least 80% to pass) if: inputs.skip-coverage != 'true'