We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c5efe commit b431d7eCopy full SHA for b431d7e
.github/actions/test-downstream/action.yml
@@ -16,9 +16,9 @@ runs:
16
- name: set up venv
17
shell: bash
18
run: |
19
- package_spec=${{inputs.package_spec}}
+ package_spec="${{inputs.package_spec}}"
20
package_spec=${package_spec:-"${{inputs.package_name}}[test]"}
21
- pytest_args=${{inputs.pytest_args}}
+ pytest_args="${{inputs.pytest_args}}"
22
pytest_args=${pytest_args:-"--pyargs ${{inputs.package_name}}"}
23
python -m venv test_venv
24
bin_dir=./test_venv/bin
0 commit comments