Skip to content

Commit 8ec0d57

Browse files
bhazeltonmkolopanis
authored andcommitted
almost there
1 parent a2af5aa commit 8ec0d57

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/publish-to-test-pypi.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}*
3535
CIBW_ARCHS: ${{ matrix.buildplat[2] }}
3636
CIBW_TEST_REQUIRES: "-r ci/test_requirements.txt"
37-
CIBW_TEST_COMMAND: "python -m pytest --pyargs pyuvdata"
37+
CIBW_TEST_COMMAND: "python -m pytest --pyargs pyuvdata -n auto"
3838

3939
- uses: actions/upload-artifact@v4
4040
with:
@@ -70,13 +70,13 @@ jobs:
7070

7171
- name: Upload to test PyPI
7272
if: startsWith(github.ref, 'refs/tags')
73-
uses: pypa/gh-action-pypi-publish@v1.8
73+
uses: pypa/gh-action-pypi-publish@release/v1
7474
with:
7575
password: ${{ secrets.test_pypi_password }}
7676
repository_url: https://test.pypi.org/legacy/
7777

7878
- name: Upload to PyPI
7979
if: startsWith(github.ref, 'refs/tags')
80-
uses: pypa/gh-action-pypi-publish@v1.8
80+
uses: pypa/gh-action-pypi-publish@release/v1
8181
with:
8282
password: ${{ secrets.pypi_password }}

ci/test_requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ packaging
33
pytest>=6.2.5
44
pytest-cov
55
pytest-cases>=3.8.3
6+
pytest-xdist

0 commit comments

Comments
 (0)