Skip to content

Commit

Permalink
Fix tests (#128)
Browse files Browse the repository at this point in the history
* don't publish wheel to test pypi from CI

* we require clvm_tools 0.4.4 for the tests to pass now
  • Loading branch information
arvidn committed Oct 21, 2022
1 parent 8cb919d commit 1a794c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# adapted from https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/

name: Publish Python distributions to PyPI and TestPyPI
name: Publish Python distributions to PyPI

on:
push:
Expand All @@ -16,7 +16,7 @@ on:

jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI and TestPyPI
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-18.04

steps:
Expand All @@ -42,12 +42,6 @@ jobs:
--binary
--out-dir dist/
.
- name: Publish distribution to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
skip_existing: true
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution to PyPI
if: startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
]

dev_dependencies = [
"clvm_tools>=0.4.2",
"clvm_tools>=0.4.4",
"pytest",
]

Expand Down

0 comments on commit 1a794c4

Please sign in to comment.