mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
WIP: Debug with ssh
This commit is contained in:
parent
b115e6b8c5
commit
f44df6f70e
2 changed files with 13 additions and 10 deletions
5
.github/workflows/large-tests.yml
vendored
5
.github/workflows/large-tests.yml
vendored
|
@ -48,7 +48,8 @@ jobs:
|
||||||
- build-container-image
|
- build-container-image
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
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:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -76,6 +77,8 @@ jobs:
|
||||||
python3 python3-poetry make
|
python3 python3-poetry make
|
||||||
poetry install
|
poetry install
|
||||||
|
|
||||||
|
- uses: lhotari/action-upterm@v1
|
||||||
|
|
||||||
- name: Run large tests
|
- name: Run large tests
|
||||||
run: |-
|
run: |-
|
||||||
export TEST_GROUP_COUNT=20
|
export TEST_GROUP_COUNT=20
|
||||||
|
|
|
@ -90,14 +90,14 @@ class TestLargeSet(TestCli):
|
||||||
def test_10K_docs(self, doc: Path, tmp_path: Path) -> None:
|
def test_10K_docs(self, doc: Path, tmp_path: Path) -> None:
|
||||||
self.run_doc_test(doc, tmp_path)
|
self.run_doc_test(doc, tmp_path)
|
||||||
|
|
||||||
@for_each_100K_doc
|
# @for_each_100K_doc
|
||||||
def test_100K_docs(self, doc: Path, tmp_path: Path) -> None:
|
# def test_100K_docs(self, doc: Path, tmp_path: Path) -> None:
|
||||||
self.run_doc_test(doc, tmp_path)
|
# self.run_doc_test(doc, tmp_path)
|
||||||
|
|
||||||
@for_each_10M_doc
|
# @for_each_10M_doc
|
||||||
def test_10M_docs(self, doc: Path, tmp_path: Path) -> None:
|
# def test_10M_docs(self, doc: Path, tmp_path: Path) -> None:
|
||||||
self.run_doc_test(doc, tmp_path)
|
# self.run_doc_test(doc, tmp_path)
|
||||||
|
|
||||||
@for_each_100M_doc
|
# @for_each_100M_doc
|
||||||
def test_100M_docs(self, doc: Path, tmp_path: Path) -> None:
|
# def test_100M_docs(self, doc: Path, tmp_path: Path) -> None:
|
||||||
self.run_doc_test(doc, tmp_path)
|
# self.run_doc_test(doc, tmp_path)
|
||||||
|
|
Loading…
Reference in a new issue