diff --git a/.github/workflows/large-tests.yml b/.github/workflows/large-tests.yml index 4c2c9d6..586f81a 100644 --- a/.github/workflows/large-tests.yml +++ b/.github/workflows/large-tests.yml @@ -48,8 +48,7 @@ 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] + group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] steps: - name: Checkout @@ -77,8 +76,6 @@ 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 7c68b30..42a5ecd 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)