summaryrefslogtreecommitdiff
path: root/doc/example/devenv.txt
blob: 571f89cf7c0db7950fcecb455697f596c4633f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

Development environment
=======================

Tox can be used to prepare development virtual environment for local projects.
This feature can be useful in order to preserve environment across team members
working on same project. It can be also used by deployment tools to prepare
proper environments.


Configuration
-------------

Firstly, you need to prepare configuration for your development environment. In
order to do that, we must define proper section at ``tox.ini`` file and tell at
what directory environment should be created. Moreover, we need to specify
python version that should be picked, and that the package should be installed
with ``setup.py develop``::

    [testenv:devenv]
    envdir = devenv
    basepython = python2.7
    usedevelop = True
    commands =
    deps =


Actually, you can configure a lot more, those are the only required settings.
In example you can add ``deps`` and ``commands`` settings. Here, we tell tox
not to pick ``commands`` or ``deps`` from base ``testenv`` configuration.


Creating development environment
--------------------------------

Once ``devenv`` section is defined we can instrument tox to create our
environment::

    tox -e devenv

This will create an environment at path specified by ``envdir`` under
``[testenv:devenv]`` section.


Full configuration example
--------------------------

Let's say we want our development environment sit at ``devenv`` and pull
packages from ``requirements.txt`` file which we create at the same directory
as ``tox.ini`` file. We also want to speciy Python version to be 2.7, and use
``setup.py develop`` to work in development mode instead of building and
installing an ``sdist`` package.

Here is example configuration for that::

    [testenv:devenv]
    envdir = devenv
    basepython = python2.7
    usedevelop = True
    deps = -rrequirements.txt