Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
shell: bash
run: |
python -m venv test-sdist
test-sdist/bin/activate
source test-sdist/bin/activate
which python
python -m pip install --force-reinstall `find dist -name "*.tar.gz"`[${{ inputs.test_extras }}]
cd ${{ runner.temp }}
Expand All @@ -54,7 +54,7 @@ runs:
shell: bash
run: |
python -m venv test-sdist
test-sdist/bin/activate
source test-sdist/bin/activate
which python
python -m pip install --force-reinstall `find dist -name "*.tar.gz"`
cd ${{ runner.temp }}
Expand All @@ -72,7 +72,7 @@ runs:
shell: bash
run: |
python -m venv test-wheel
test-wheel/bin/activate
source test-wheel/bin/activate
which python
python -m pip install --force-reinstall `find dist -name "*.whl"`[${{ inputs.test_extras }}]
cd ${{ runner.temp }}
Expand All @@ -83,7 +83,7 @@ runs:
shell: bash
run: |
python -m venv test-wheel
test-wheel/bin/activate
source test-wheel/bin/activate
which python
python -m pip install --force-reinstall `find dist -name "*.whl"`
cd ${{ runner.temp }}
Expand Down