forked from ethereum/eth-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
35 lines (30 loc) · 680 Bytes
/
Copy pathtox.ini
File metadata and controls
35 lines (30 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tox]
envlist=
py{310,311,312,313,313t,314,314t}-core
py{310,311,312,313,313t,314,314t}-wheel
[flake8]
exclude=venv*,.tox,docs,build
extend-ignore=E203
max-line-length=88
per-file-ignores=__init__.py:F401
[blocklint]
max_issue_threshold=1
[testenv]
usedevelop=True
install_command=python -m pip install {opts} {packages}
commands=
core: pytest {posargs:tests/core}
extras=
test
docs
allowlist_externals=make,pre-commit
deps=
eth-hash[pycryptodome]
[testenv:py{310,311,312,313,313t,314,314t}-wheel]
deps=
wheel
build[virtualenv]
commands=
python -m pip install --upgrade pip
python scripts/ci/smoke_test_built_wheel.py
skip_install=true