Skip to content

Commit 0b0ffc3

Browse files
authored
[BUILD] Skip installing test related python packages (#5294)
triton-lang/triton#5292 failed because of macOS build. Since we don’t run any tests on macOS anyway, it’s fine to simply skip them.
1 parent b7e0601 commit 0b0ffc3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ jobs:
581581
echo "PATH is '$PATH'"
582582
cd python
583583
ccache --zero-stats
584-
python3 -m pip install -v --no-build-isolation .[tests]
584+
python3 -m pip install -v --no-build-isolation .
585585
- name: CCache Stats
586586
run: ccache --print-stats
587587
- name: Inspect cache directories

.github/workflows/integration-tests.yml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ jobs:
493493
echo "PATH is '$PATH'"
494494
cd python
495495
ccache --zero-stats
496-
python3 -m pip install -v --no-build-isolation .[tests]
496+
python3 -m pip install -v --no-build-isolation .
497497

498498
- *print-ccache-stats
499499
- *inspect-cache-directories-step

0 commit comments

Comments
 (0)