Skip to content

Commit b3997d2

Browse files
committed
testing after pypi deployment fix
- ensure that testing does not see the checked out sources because then it will be missing authors.py and fail the author test - check out repo for the wait-for-pypi action under source
1 parent a7484eb commit b3997d2

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,11 @@ jobs:
163163

164164
- name: Checkout repository for actions
165165
uses: actions/checkout@v6
166+
with:
167+
path: source # put code under different path and do not cd to avoid interference with pytest invocation (missing authors.py)
166168

167169
- name: Wait for version to be available on TestPyPI
168-
uses: ./.github/actions/wait-for-pypi-version
170+
uses: ./source/.github/actions/wait-for-pypi-version
169171
with:
170172
repository: testpypi
171173
package: MDAnalysisData
@@ -203,9 +205,11 @@ jobs:
203205

204206
- name: Checkout repository for actions
205207
uses: actions/checkout@v6
208+
with:
209+
path: source # put code under different path and do not cd to avoid interference with pytest invocation (missing authors.py)
206210

207211
- name: Wait for version to be available on PyPI
208-
uses: ./.github/actions/wait-for-pypi-version
212+
uses: ./source/.github/actions/wait-for-pypi-version
209213
with:
210214
repository: pypi
211215
package: MDAnalysisData

0 commit comments

Comments
 (0)