File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -35,19 +35,18 @@ jobs:
3535 uv pip install -e ".[test,rag]"
3636
3737 - name : Run tests
38- timeout-minutes : 15
38+ timeout-minutes : 10
3939 run : |
4040 # ignore mysterious segfault (139) if tests pass since this does not repro locally
41- uv run --no-project bash -c 'pytest test/llm -m rag --cov --cov-report=xml -v; E=$?; [[ $E == 0 || $E == 139 ]] && exit 0 || exit $E'
41+ uv run --no-project bash -c 'pytest test/llm/models/test_g_retriever.py -m rag --cov --cov-report=xml -v; E=$?; [[ $E == 0 || $E == 139 ]] && exit 0 || exit $E'
4242 uv run --no-project bash -c 'pytest test/datasets/ -m rag --cov --cov-report=xml -v; E=$?; [[ $E == 0 || $E == 139 ]] && exit 0 || exit $E'
43+ uv run --no-project pytest test/llm/models/test_llm.py -m rag -v
44+ uv run --no-project pytest test/llm/models/test_sentence_transformer.py -m rag -v
45+ uv run --no-project pytest test/llm/utils/ -m rag -v
46+ uv run --no-project pytest test/llm/test_rag_loader.py -m rag -v
4347 shell : bash
4448 env :
4549 RAG_TEST : " 1"
4650 TOKENIZERS_PARALLELISM : " false"
4751 OMP_NUM_THREADS : " 1"
4852 MKL_NUM_THREADS : " 1"
49-
50- - name : Upload coverage
51- uses : codecov/codecov-action@v5
52- with :
53- fail_ci_if_error : false
You can’t perform that action at this time.
0 commit comments