mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-04 12:41:50 +02:00
Large tests: comment out longer runs
This commit is contained in:
parent
5b6911af84
commit
d1000f8208
1 changed files with 18 additions and 18 deletions
|
@ -49,15 +49,15 @@ docs_100M = get_test_docs(min_size=10 * 2**20, max_size=100 * 2**20)
|
||||||
for_each_10K_doc = pytest.mark.parametrize(
|
for_each_10K_doc = pytest.mark.parametrize(
|
||||||
"doc", docs_10K, ids=[str(doc.name) for doc in docs_10K]
|
"doc", docs_10K, ids=[str(doc.name) for doc in docs_10K]
|
||||||
)
|
)
|
||||||
for_each_100K_doc = pytest.mark.parametrize(
|
# for_each_100K_doc = pytest.mark.parametrize(
|
||||||
"doc", docs_100K, ids=[str(doc.name) for doc in docs_100K]
|
# "doc", docs_100K, ids=[str(doc.name) for doc in docs_100K]
|
||||||
)
|
# )
|
||||||
for_each_10M_doc = pytest.mark.parametrize(
|
# for_each_10M_doc = pytest.mark.parametrize(
|
||||||
"doc", docs_10M, ids=[str(doc.name) for doc in docs_10M]
|
# "doc", docs_10M, ids=[str(doc.name) for doc in docs_10M]
|
||||||
)
|
# )
|
||||||
for_each_100M_doc = pytest.mark.parametrize(
|
# for_each_100M_doc = pytest.mark.parametrize(
|
||||||
"doc", docs_100M, ids=[str(doc.name) for doc in docs_100M]
|
# "doc", docs_100M, ids=[str(doc.name) for doc in docs_100M]
|
||||||
)
|
# )
|
||||||
|
|
||||||
|
|
||||||
class TestLargeSet(TestCli):
|
class TestLargeSet(TestCli):
|
||||||
|
@ -86,14 +86,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