WIP: Debug with ssh

This commit is contained in:
Alex Pyrgiotis 2025-03-12 18:32:15 +02:00
parent b115e6b8c5
commit f44df6f70e
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA
2 changed files with 13 additions and 10 deletions

View file

@ -48,7 +48,8 @@ jobs:
- build-container-image
strategy:
matrix:
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
#group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
group: [1]
steps:
- name: Checkout
@ -76,6 +77,8 @@ jobs:
python3 python3-poetry make
poetry install
- uses: lhotari/action-upterm@v1
- name: Run large tests
run: |-
export TEST_GROUP_COUNT=20

View file

@ -90,14 +90,14 @@ class TestLargeSet(TestCli):
def test_10K_docs(self, doc: Path, tmp_path: Path) -> None:
self.run_doc_test(doc, tmp_path)
@for_each_100K_doc
def test_100K_docs(self, doc: Path, tmp_path: Path) -> None:
self.run_doc_test(doc, tmp_path)
# @for_each_100K_doc
# def test_100K_docs(self, doc: Path, tmp_path: Path) -> None:
# self.run_doc_test(doc, tmp_path)
@for_each_10M_doc
def test_10M_docs(self, doc: Path, tmp_path: Path) -> None:
self.run_doc_test(doc, tmp_path)
# @for_each_10M_doc
# def test_10M_docs(self, doc: Path, tmp_path: Path) -> None:
# self.run_doc_test(doc, tmp_path)
@for_each_100M_doc
def test_100M_docs(self, doc: Path, tmp_path: Path) -> None:
self.run_doc_test(doc, tmp_path)
# @for_each_100M_doc
# def test_100M_docs(self, doc: Path, tmp_path: Path) -> None:
# self.run_doc_test(doc, tmp_path)