~sayan-chowdhury2012/postorius/postorius

« back to all changes in this revision

Viewing changes to tox.ini

  • Committer: Florian Fuchs
  • Date: 2015-04-17 21:20:47 UTC
  • mfrom: (225.2.24 postorius)
  • Revision ID: flo.fuchs@gmail.com-20150417212047-087j9a6o5smh1oe0
* Added subscription moderation.
* Subscription attempts now show proper messages (subscribed/held for approval).
* Style changes on most forms.
* Removed some cruft from the forms module.
* Style changes on the summary page.
* Added list owner address to summary page.
* Added a note for moderators about non-advertised lists to the list index to avoid confusion. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    POSTORIUS_VCR_RECORD_MODE = all
24
24
commands =
25
25
    django-admin.py test --settings=testing.test_settings {posargs:postorius}
 
26
 
 
27
 
 
28
# These are used for local development and expect mailman.client to be
 
29
# sitting in a directory next to this one. 
 
30
[testenv:dev]
 
31
usedevelop = True
 
32
basepython = python2.7
 
33
deps =
 
34
    -rdev-requirements.txt
 
35
    Django==1.8
 
36
setenv = 
 
37
    PYTHONPATH = {toxinidir}
 
38
commands =
 
39
    # Install mailman.client from local repo instead of from pypi
 
40
    pip install -e ../mailman.client
 
41
    django-admin.py test --settings=testing.test_settings {posargs:postorius}
 
42
 
 
43
[testenv:dev-record]
 
44
usedevelop = True
 
45
basepython = python2.7
 
46
deps =
 
47
    -rdev-requirements.txt
 
48
    Django==1.8
 
49
setenv = 
 
50
    PYTHONPATH = {toxinidir}
 
51
    POSTORIUS_VCR_RECORD_MODE = all
 
52
commands =
 
53
    # Install mailman.client from local repo instead of from pypi
 
54
    pip install -e ../mailman.client
 
55
    django-admin.py test --settings=testing.test_settings {posargs:postorius}