Skip to content

Commit 0ac2bf8

Browse files
committed
Remove unit tests
1 parent 87bb3b0 commit 0ac2bf8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-test-reusable.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,8 @@ jobs:
163163
echo TRITON_TEST_CMD="bash -v -x scripts/test-triton.sh --warning-reports --skip-pytorch-install --reports-dir $GITHUB_WORKSPACE/reports ${{ inputs.ignore_errors && '--ignore-errors' || '' }} $skiplist"
164164
} | tee -a $GITHUB_ENV
165165
166-
- name: Run inductor test
167-
run: |
168-
#FIXME move back test when ready
169-
${{ env.TRITON_TEST_CMD }} --inductor #--skip-pip-install
170-
171166
- name: Run unit tests
167+
if: inputs.env_manager == 'base'
172168
run: |
173169
${{ env.TRITON_TEST_CMD }} --unit
174170
@@ -185,6 +181,7 @@ jobs:
185181
${{ env.TRITON_TEST_CMD }} --tutorial --skip-pip-install
186182
187183
- name: Run instrumentation tests
184+
if: inputs.env_manager == 'base'
188185
run: |
189186
${{ env.TRITON_TEST_CMD }} --instrumentation --skip-pip-install
190187
@@ -204,6 +201,10 @@ jobs:
204201
ref: ${{ env.TRANSFORMERS_VERSION }}
205202
try-tag-prefix: v
206203

204+
- name: Run inductor test
205+
run: |
206+
${{ env.TRITON_TEST_CMD }} --inductor --skip-pip-install
207+
207208
- name: Save pip cache
208209
if: (inputs.env_manager == 'base') && (steps.pip-cache.outputs.status == 'miss')
209210
uses: ./.github/actions/save

scripts/install-conda.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/bin/bash
22

33
install_env() {
4-
set -vx
54
export PATH="$HOME/miniforge3/bin:$PATH"
65
conda create -n triton --override-channels -c conda-forge python=$python_version.*
76
conda env update -f scripts/triton.yml

0 commit comments

Comments
 (0)