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

dummy PR with no h platform word #458

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/check-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,25 @@ jobs:
uses: medyagh/setup-minikube@master
- name: Run tests
timeout-minutes: 40
run: pytest
run: pytest -k 'not heroku'
env:
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
HEROKU_TEAM: iterative-sandbox
GITHUB_MATRIX_OS: ${{ matrix.os }}
GITHUB_MATRIX_PYTHON: ${{ matrix.python }}
BITBUCKET_USERNAME: ${{ secrets.BITBUCKET_USERNAME }}
BITBUCKET_PASSWORD: ${{ secrets.BITBUCKET_PASSWORD }}
- name: Run Heroku tests
if: ${{ github.event_name == 'schedule' || contains(github.event.pull_request.title, 'heroku') }}
timeout-minutes: 40
run: pytest -k 'heroku'
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
HEROKU_TEAM: iterative-sandbox
GITHUB_MATRIX_OS: ${{ matrix.os }}
GITHUB_MATRIX_PYTHON: ${{ matrix.python }}
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion mlem/contrib/kubernetes/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def build_k8s_docker(
daemon: Optional[DockerDaemon],
server: Server,
platform: Optional[str] = "linux/amd64",
# runners usually do not support arm64 images built on Mac M1 devices
# runners usually do not support arm64 images built on Mac M1 machines
):
echo(EMOJI_BUILD + f"Creating docker image {image_name}")
with set_offset(2):
Expand Down