Skip to content
This repository was archived by the owner on Sep 13, 2023. It is now read-only.

Commit b99799f

Browse files
authored
Bump heroku limits + fix setup-python action (#328)
* bump heroku limits + use python-version * use single underscores
1 parent 18e1582 commit b99799f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/check-test-release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
fetch-depth: 0
3737
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3838
- uses: actions/setup-python@v4
39+
with:
40+
python-version: '3.x'
3941
- name: set PYSHA
4042
run: echo "PYSHA=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
4143
- uses: actions/cache@v3
@@ -120,6 +122,8 @@ jobs:
120122
fetch-depth: 0
121123
ref: ${{ github.event.pull_request.head.sha || github.ref }}
122124
- uses: actions/setup-python@v4
125+
with:
126+
python-version: '3.x'
123127
- id: dist
124128
uses: casperdcl/deploy-pypi@v2
125129
with:

tests/contrib/test_heroku.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def _check_heroku_deployment(meta):
127127
DeployStatus.NOT_DEPLOYED,
128128
DeployStatus.STARTING,
129129
],
130-
times=25,
130+
times=50,
131131
)
132132
assert meta.get_status() == DeployStatus.RUNNING
133133
time.sleep(10)

0 commit comments

Comments
 (0)