We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe8e01 commit 63a9fc5Copy full SHA for 63a9fc5
2 files changed
tests/core/test_mnemonic.py
@@ -89,7 +89,7 @@ def test_expand_word():
89
90
@pytest.mark.parametrize(
91
"lang",
92
- {
+ [
93
Language(lang)
94
for lang in Mnemonic.list_languages()
95
if lang
@@ -100,7 +100,7 @@ def test_expand_word():
100
"chinese_simplified",
101
"chinese_traditional",
102
)
103
- },
+ ],
104
105
def test_expand(lang):
106
m = Mnemonic(lang)
tox.ini
@@ -18,7 +18,7 @@ max_issue_threshold=1
18
19
[testenv]
20
commands=
21
- core: coverage run -m pytest {posargs:tests/core}
+ core: coverage run -m pytest -n auto --maxprocesses=4 {posargs:tests/core}
22
core: coverage report
23
integration: pytest {posargs:tests/integration}
24
docs: make check-docs-ci
0 commit comments