Revert "Change skip network test name and comments"
This reverts commit f85006a798
.
This commit is contained in:
parent
9493391a2a
commit
c9ca601cff
|
@ -34,11 +34,10 @@ jobs:
|
||||||
- name: Install LLVM on Windows
|
- name: Install LLVM on Windows
|
||||||
if: matrix.os == 'windows-latest'
|
if: matrix.os == 'windows-latest'
|
||||||
run: choco install llvm -y
|
run: choco install llvm -y
|
||||||
- name: Run network tests only on macOS
|
- name: Skip network tests on Ubuntu and Windows
|
||||||
# Only macOS runners have all network capabilities:
|
# Ubuntu runners don't have network or DNS configured during test steps
|
||||||
# https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners#cloud-hosts-for-github-hosted-runners
|
# Windows runners have an unreliable network
|
||||||
# Tests that only check launch behaviour or local port binding are not skipped in any platform.
|
if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest'
|
||||||
if: matrix.os != 'macOS-latest'
|
|
||||||
run: echo "ZEBRA_SKIP_NETWORK_TESTS=1" >> $GITHUB_ENV
|
run: echo "ZEBRA_SKIP_NETWORK_TESTS=1" >> $GITHUB_ENV
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue