File: tox.ini

package info (click to toggle)
python-munch 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 264 kB
  • sloc: python: 761; makefile: 20
file content (19 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tox]
envlist =
    {py27,py35,py36,pypy}-full
    {py27,py35,py36,pypy}-no-deps
    lint

[testenv]
extras =
    testing
    {py27,py35,py36,pypy}-full: yaml
commands =
    {py27,py35,py36,pypy}-full: coverage run --source=munch -m pytest
    {py27,py35,py36,pypy}-no-deps: pytest -k 'not yaml'

[testenv:lint]
deps =
    pylint
commands =
    pylint munch setup.py tests