mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-20 04:12:25 -06:00
17 lines
293 B
INI
17 lines
293 B
INI
[tox]
|
|
envlist=py3
|
|
skipsdist=True
|
|
minversion=2.5.0
|
|
|
|
[testenv]
|
|
description=
|
|
run tests with django.
|
|
deps=
|
|
-r{toxinidir}/requirements.txt
|
|
pycodestyle
|
|
tblib
|
|
changedir = netbox
|
|
commands=
|
|
pycodestyle --ignore=W504,E501 .
|
|
python manage.py test --failfast --noinput --parallel 5 --no-color
|