File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed
.github/workflows/scripts Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ install_taichi_wheel() {
37
37
python3 -m pip install -r requirements_test.txt
38
38
python3 -m pip install " torch>1.12.0; python_version < '3.10'"
39
39
# Paddle's develop package doesn't support CI's MACOS machine at present
40
- if [[ $OSTYPE == " linux-" * ]]; then
41
- python3 -m pip install " paddlepaddle==2.3.0; python_version < '3.10'"
42
- fi
40
+ # if [[ $OSTYPE == "linux-"* ]]; then
41
+ # python3 -m pip install "paddlepaddle==2.3.0; python_version < '3.10'"
42
+ # fi
43
43
else
44
44
# # Only GPU machine uses system python.
45
45
export PATH=$PATH :$HOME /.local/bin
Original file line number Diff line number Diff line change @@ -102,9 +102,10 @@ if [ -z "$GPU_TEST" ]; then
102
102
else
103
103
echo " ::warning:: Hitting Running CPU tests only"
104
104
# Fail fast, give priority to the error-prone tests
105
- if [[ $OSTYPE == " linux-" * ]]; then
106
- run-it cpu 1 " paddle"
107
- fi
105
+ # FIXME(proton): Disable paddle tests, out of sync for too long
106
+ # if [[ $OSTYPE == "linux-"* ]]; then
107
+ # run-it cpu 1 "paddle"
108
+ # fi
108
109
run-it cpu $N
109
110
run-it cpu 1 " torch"
110
111
fi
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Invoke ti diagnose
32
32
# Invoke ti changelog
33
33
echo wanted arch: $env: TI_WANTED_ARCHS
34
34
Invoke pip install - r requirements_test.txt
35
- Invoke pip install " paddlepaddle==2.3.0; python_version < '3.10'"
35
+ # Invoke pip install "paddlepaddle==2.3.0; python_version < '3.10'"
36
36
37
37
if ($env: EXTRA_TEST_MARKERS ) {
38
38
$EXTRA_TEST_MARKERS_SOLO = @ (" -m" , $env: EXTRA_TEST_MARKERS )
@@ -47,7 +47,8 @@ if ($env:EXTRA_TEST_MARKERS) {
47
47
Invoke python tests/ run_tests.py -- cpp - vr2 - t4 @EXTRA_TEST_MARKERS_SOLO
48
48
49
49
# Fail fast, give priority to the error-prone tests
50
- Invoke python tests/ run_tests.py - vr2 - t1 - k " paddle" - a cpu @EXTRA_TEST_MARKERS_SOLO
50
+ # FIXME(proton): Disable paddle tests, out of sync for too long.
51
+ # Invoke python tests/run_tests.py -vr2 -t1 -k "paddle" -a cpu @EXTRA_TEST_MARKERS_SOLO
51
52
52
53
# Disable paddle for the remaining test
53
54
$env: TI_ENABLE_PADDLE = " 0"
Original file line number Diff line number Diff line change 1
- cmake
1
+ cmake<4.0.0
2
2
colorama
3
3
coverage
4
4
Pillow
You can’t perform that action at this time.
0 commit comments