mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-08 00:01:35 +00:00
22 lines
365 B
INI
22 lines
365 B
INI
[tox]
|
|
envlist = py38
|
|
skipsdist = True
|
|
skip_missing_interpreters=True
|
|
|
|
[testenv]
|
|
deps =
|
|
pipenv
|
|
|
|
commands =
|
|
python -m pip install --upgrade pip
|
|
pipenv install --dev
|
|
|
|
# Temporarily ignore unreachable (and non-actionable)
|
|
# DoS in `wheel`.
|
|
#
|
|
# See: microsoft/onefuzz#2593
|
|
pipenv check -i 51499
|
|
|
|
pipenv run black --diff --check .
|
|
pipenv run pylint .
|