Skip to content

Commit 416b636

Browse files
authored
Merge pull request #74 from mindsdb/fix/rate_limit
fix hitting rate limit in testing
2 parents abc81eb + 44444f5 commit 416b636

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/cla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
types: [opened,closed,synchronize]
77
jobs:
88
CLAssistant:
9-
runs-on: ubuntu-latest
9+
runs-on: mdb-dev
1010
steps:
1111
- name: "CLA Assistant"
1212
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# Push a new release to PyPI
1111
deploy_to_pypi:
1212
name: Publish to PyPI
13-
runs-on: ubuntu-latest
13+
runs-on: mdb-dev
1414
if: github.actor != 'mindsdbadmin'
1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/test_on_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
test:
9-
runs-on: ubuntu-latest
9+
runs-on: mdb-dev
1010
strategy:
1111
matrix:
1212
python-version: ['3.10']

.github/workflows/test_on_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
os: [ubuntu-latest]
13+
os: [mdb-dev]
1414
python-version: ['3.8', '3.9', '3.10', '3.11']
1515
steps:
1616
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)