Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
frkl_pkg / tox.ini
Size: Mime:
# Tox configuration file
# Read more under https://tox.readthedocs.org/

[tox]
envlist = py27, py34 py35, py36, flake8

[testenv:flake8]
basepython = python
deps =
    -r{toxinidir}/requirements/testing.txt
commands = flake8 src/frkl_pkg

[testenv]
# uncomment to omit testing package builds & installs for faster runs
# usedevelop = True
setenv =
    PYTHONPATH = {toxinidir}
deps =
    -r{toxinidir}/requirements/testing.txt
commands =
    pip install -U pip
    py.test --basetemp={envtmpdir}