Commit a1617046 authored by nimrod's avatar nimrod
Browse files

- Use tox environments instead of gloablly installed packages.

parent 74462df8
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
output/*
cache/*
output/
cache/
.cache/
.tox/
*.log
*.pyc
*~
~*

tox.ini

0 → 100644
+19 −0
Original line number Diff line number Diff line
[tox]
envlist = build
skipsdist = True

[testenv]
envdir = {toxinidir}/.tox/env
basepython = python2
deps =
    Fabric
    pelican
commands =
    build: fab build
    serve: fab build serve
    publish: fab publish
    publish: git push
whitelist_externals =
    ssh
    rsync
    git