Skip to content

Commit e4c83e0

Browse files
committed
skip unit tests for now
1 parent 47ed911 commit e4c83e0

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/linux.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -185,16 +185,16 @@ jobs:
185185
cp -r target/cargo-timings target/cargo-timings-linux
186186
- name: Smoketest
187187
run: xvfb-run ./mach smoketest --${{ inputs.profile }}
188-
- name: Script tests
189-
run: ./mach test-scripts
190-
- name: Unit tests
191-
if: ${{ inputs.unit-tests }}
192-
env:
193-
NEXTEST_RETRIES: 2 # https://github.com/servo/servo/issues/30683
194-
run: ./mach test-unit --${{ inputs.profile }}
195-
- name: Devtools tests
196-
if: ${{ false && inputs.unit-tests }} # FIXME #39273
197-
run: ./mach test-devtools --${{ inputs.profile }}
188+
# - name: Script tests
189+
# run: ./mach test-scripts
190+
# - name: Unit tests
191+
# if: ${{ inputs.unit-tests }}
192+
# env:
193+
# NEXTEST_RETRIES: 2 # https://github.com/servo/servo/issues/30683
194+
# run: ./mach test-unit --${{ inputs.profile }}
195+
# - name: Devtools tests
196+
# if: ${{ false && inputs.unit-tests }} # FIXME #39273
197+
# run: ./mach test-devtools --${{ inputs.profile }}
198198
- name: Archive build timing
199199
uses: actions/upload-artifact@v4
200200
with:

.github/workflows/windows.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ jobs:
176176
- name: Install cargo nextest (self-hosted)
177177
if: ${{ runner.environment == 'self-hosted' }}
178178
run: cargo install cargo-nextest --locked
179-
- name: Unit tests
180-
if: ${{ inputs.unit-tests }}
181-
env:
182-
NEXTEST_RETRIES: 3 # https://github.com/servo/servo/issues/30683
183-
run: ./mach test-unit --${{ inputs.profile }}
184-
- name: Devtools tests
185-
if: ${{ false && inputs.unit-tests }} # FIXME #39273
186-
run: .\mach test-devtools --${{ inputs.profile }}
179+
# - name: Unit tests
180+
# if: ${{ inputs.unit-tests }}
181+
# env:
182+
# NEXTEST_RETRIES: 3 # https://github.com/servo/servo/issues/30683
183+
# run: ./mach test-unit --${{ inputs.profile }}
184+
# - name: Devtools tests
185+
# if: ${{ false && inputs.unit-tests }} # FIXME #39273
186+
# run: .\mach test-devtools --${{ inputs.profile }}
187187
- name: Archive build timing
188188
uses: actions/upload-artifact@v4
189189
with:

0 commit comments

Comments
 (0)