Skip to content

Commit

Permalink
Remove pre-release testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Baekalfen committed Oct 19, 2023
1 parent 93c129c commit 071e894
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,23 @@ jobs:
pip install --prefer-binary -r requirements_tests.txt
python -m pytest tests/ -n2 -v
- name: Build and upload wheel
if: ${{ github.event_name == 'release' && github.event.action == 'released' && !contains(matrix.os, 'ubuntu') }}
if: ${{ github.event_name == 'release' && github.event.action == 'published' && !contains(matrix.os, 'ubuntu') }}
run: |
echo "Building wheel and uploading"
pip install wheel twine
python setup.py sdist bdist_wheel
python -m twine upload --non-interactive -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/*.whl
echo "Uploading source code"
python -m twine upload --non-interactive --skip-existing -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/*.tar.gz
- name: Build and upload wheel [TEST]
if: ${{ github.event_name == 'release' && github.event.action == 'prereleased' && !contains(matrix.os, 'ubuntu') }}
run: |
echo "Building wheel and uploading"
pip install wheel twine
python setup.py sdist bdist_wheel
python -m twine upload --repository testpypi --non-interactive -u '__token__' -p ${{ secrets.PYPI_TEST_API_TOKEN }} dist/*.whl
echo "Uploading source code"
python -m twine upload --repository testpypi --non-interactive --skip-existing -u '__token__' -p ${{ secrets.PYPI_TEST_API_TOKEN }} dist/*.tar.gz
# - name: Build and upload wheel [TEST]
# if: ${{ github.event_name == 'release' && github.event.action == 'prereleased' && !contains(matrix.os, 'ubuntu') }}
# run: |
# echo "Building wheel and uploading"
# pip install wheel twine
# python setup.py sdist bdist_wheel
# python -m twine upload --repository testpypi --non-interactive -u '__token__' -p ${{ secrets.PYPI_TEST_API_TOKEN }} dist/*.whl
# echo "Uploading source code"
# python -m twine upload --repository testpypi --non-interactive --skip-existing -u '__token__' -p ${{ secrets.PYPI_TEST_API_TOKEN }} dist/*.tar.gz

test_pypy:
name: PyPy - Test
Expand Down Expand Up @@ -171,14 +171,14 @@ jobs:
with:
python-version: 3.8
- name: Upload wheel
if: ${{ github.event_name == 'release' && github.event.action == 'released' }}
if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
run: |
echo "Uploading wheel"
pip install twine
python -m twine upload --non-interactive -u '__token__' -p ${{ secrets.PYPI_API_TOKEN }} dist/*.whl
- name: Upload wheel [TEST]
if: ${{ github.event_name == 'release' && github.event.action == 'prereleased' }}
run: |
echo "Uploading wheel"
pip install twine
python -m twine upload --repository testpypi --non-interactive -u '__token__' -p ${{ secrets.PYPI_TEST_API_TOKEN }} dist/*.whl
# - name: Upload wheel [TEST]
# if: ${{ github.event_name == 'release' && github.event.action == 'prereleased' }}
# run: |
# echo "Uploading wheel"
# pip install twine
# python -m twine upload --repository testpypi --non-interactive -u '__token__' -p ${{ secrets.PYPI_TEST_API_TOKEN }} dist/*.whl

0 comments on commit 071e894

Please sign in to comment.