Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily disable saw-remote-api tests on MacOS #1718

Merged
merged 4 commits into from
Aug 2, 2022
Merged
Changes from 3 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
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,19 @@ jobs:
fail-fast: false
matrix:
include:
- test: saw-remote-api/scripts/run_rpc_tests.sh
- name: Install and test
test: saw-remote-api/scripts/run_rpc_tests.sh
os: ubuntu-18.04
- test: saw-remote-api/scripts/run_rpc_tests.sh
# TODO: These tests are disabled pending resolution of issue #1699
chameco marked this conversation as resolved.
Show resolved Hide resolved
- name: Install on MacOS
test: |
cd saw-remote-api/python/
poetry update
poetry install
poetry run mypy saw_client/
os: macos-12
- test: saw-remote-api/scripts/check_docs.sh
- name: Check docs
test: saw-remote-api/scripts/check_docs.sh
os: ubuntu-18.04
steps:
- uses: actions/checkout@v2
Expand All @@ -320,7 +328,7 @@ jobs:
with:
poetry-version: 1.1.5

- name: ${{ matrix.test }}
- name: ${{ matrix.name }}
shell: bash
run: |
chmod +x dist/bin/*
Expand Down