Skip to content

Commit 8ae6f28

Browse files
committed
cleanup
1 parent c978391 commit 8ae6f28

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/testing_rag.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)