Skip to content

Commit b431d7e

Browse files
committed
better cleanup
1 parent d8c5efe commit b431d7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/test-downstream/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ runs:
1616
- name: set up venv
1717
shell: bash
1818
run: |
19-
package_spec=${{inputs.package_spec}}
19+
package_spec="${{inputs.package_spec}}"
2020
package_spec=${package_spec:-"${{inputs.package_name}}[test]"}
21-
pytest_args=${{inputs.pytest_args}}
21+
pytest_args="${{inputs.pytest_args}}"
2222
pytest_args=${pytest_args:-"--pyargs ${{inputs.package_name}}"}
2323
python -m venv test_venv
2424
bin_dir=./test_venv/bin

0 commit comments

Comments
 (0)