File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,15 @@ jobs:
39
39
- name : Install dependencies
40
40
run : |
41
41
python -m pip install --upgrade pip
42
- python -m pip install {{ inputs.package-name }}
42
+ python -m pip install $ {{ inputs.package-name }}
43
43
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt
44
- - name : Run the array API testsuite ({{ inputs.package-name }})
44
+ - name : Run the array API testsuite ($ {{ inputs.package-name }})
45
45
env :
46
- ARRAY_API_TESTS_MODULE : array_api_compat.{{ inputs.package-name }}
46
+ ARRAY_API_TESTS_MODULE : array_api_compat.$ {{ inputs.package-name }}
47
47
# This enables the NEP 50 type promotion behavior (without it a lot of
48
48
# tests fail on bad scalar type promotion behavior)
49
49
NPY_PROMOTION_STATE : weak
50
50
run : |
51
51
export PYTHONPATH="${GITHUB_WORKSPACE}/array-api-compat"
52
52
cd ${GITHUB_WORKSPACE}/array-api-tests
53
- pytest ${PYTEST_ARGS} --xfails-file ${GITHUB_WORKSPACE}/array-api-compat/{{ inputs.package-name }}-xfails.txt array_api_tests/
53
+ pytest ${PYTEST_ARGS} --xfails-file ${GITHUB_WORKSPACE}/array-api-compat/$ {{ inputs.package-name }}-xfails.txt array_api_tests/
You can’t perform that action at this time.
0 commit comments