From f44df6f70e996ab4eadec88a11ba3468aae369c7 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Wed, 12 Mar 2025 18:32:15 +0200 Subject: [PATCH] WIP: Debug with ssh --- .github/workflows/large-tests.yml | 5 ++++- tests/test_large_set.py | 18 +++++++++--------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/large-tests.yml b/.github/workflows/large-tests.yml index 586f81a..4c2c9d6 100644 --- a/.github/workflows/large-tests.yml +++ b/.github/workflows/large-tests.yml @@ -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 diff --git a/tests/test_large_set.py b/tests/test_large_set.py index 42a5ecd..7c68b30 100644 --- a/tests/test_large_set.py +++ b/tests/test_large_set.py @@ -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)