diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ca602d2f7..6c364fad38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,14 +16,6 @@ jobs: uses: actions/setup-python@v5 with: python-version: 3.7 - # TODO: ideally, this pipeline should run parallelized tests in upstream jobs.. - #- name: Install test tooling - # run: | - # pip install pytest pytest-cov nose nose-parameterized - # pip install -r requirements.txt - #- name: Run tests - # run: | - # pytest --cov=./pymc --cov-report term-missing pymc/ - name: Install release tooling run: | pip install build twine @@ -40,16 +32,3 @@ jobs: run: | twine check dist/* twine upload --repository pypi --username __token__ --password ${PYPI_TOKEN} dist/* - test-install-job: - needs: release-job - runs-on: ubuntu-latest - steps: - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.7 - - name: Give PyPI a chance to update the index - run: sleep 240 - - name: Install from PyPI - run: | - pip install pymc==${GITHUB_REF:11}