File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/actions/test-downstream Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ runs:
16
16
- name : set up venv
17
17
shell : bash
18
18
run : |
19
- package_spec=${${{inputs.package_spec}}:-"${{inputs.package_name}}[test]"}
20
- pytest_args=${${{inputs.pytest_args}}:-"--pyargs ${{inputs.package_name}}"}
19
+ package_spec=${" ${{inputs.package_spec}}" :-"${{inputs.package_name}}[test]"}
20
+ pytest_args=${" ${{inputs.pytest_args}" }:-"--pyargs ${{inputs.package_name}}"}
21
21
python -m venv test_venv
22
22
bin_dir=./test_venv/bin
23
23
${bin_dir}/python -m pip install -U pip
24
24
${bin_dir}/python -m pip install ${package_spec}
25
25
${bin_dir}/python -m pip install . --force-reinstall
26
- ${{ inputs.env_values }} ${bin_dir}/pytest ${pytest_args}
26
+ ${{ inputs.env_values }}; ${bin_dir}/pytest ${pytest_args}
27
27
rm -rf ./test_venv
You can’t perform that action at this time.
0 commit comments