forked from mbi/django-rosetta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
66 lines (55 loc) · 1.71 KB
/
tox.ini
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
62
63
64
65
66
[tox]
envlist =
flake8,
py{36,37}-django{20,21},
py{36,37,38}-django{22,30,31},
gettext,
docs
skipsdist = True
[testenv]
changedir = testproject
commands =
python -Wd manage.py test rosetta
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
django20: Django==2.0.*
django21: Django>=2.1,<=2.1.99
django22: Django>=2.2.8,<=2.2.99
django30: Django>=3.0,<=3.0.99
django31: Django>=3.1,<=3.1.99
python-memcached
requests
polib>=1.1.0
six
goslate
vcrpy
coverage
[testenv:gettext]
basepython = python3
changedir = rosetta/locale/
whitelist_externals =
msgfmt
commands =
msgfmt -c -o cs/LC_MESSAGES/django.mo cs/LC_MESSAGES/django.po
msgfmt -c -o de/LC_MESSAGES/django.mo de/LC_MESSAGES/django.po
msgfmt -c -o es/LC_MESSAGES/django.mo es/LC_MESSAGES/django.po
msgfmt -c -o fa/LC_MESSAGES/django.mo fa/LC_MESSAGES/django.po
msgfmt -c -o fr/LC_MESSAGES/django.mo fr/LC_MESSAGES/django.po
msgfmt -c -o hu/LC_MESSAGES/django.mo hu/LC_MESSAGES/django.po
msgfmt -c -o it/LC_MESSAGES/django.mo it/LC_MESSAGES/django.po
msgfmt -c -o nl/LC_MESSAGES/django.mo nl/LC_MESSAGES/django.po
msgfmt -c -o pl/LC_MESSAGES/django.mo pl/LC_MESSAGES/django.po
msgfmt -c -o ru/LC_MESSAGES/django.mo ru/LC_MESSAGES/django.po
msgfmt -c -o tr/LC_MESSAGES/django.mo tr/LC_MESSAGES/django.po
msgfmt -c -o uk/LC_MESSAGES/django.mo uk/LC_MESSAGES/django.po
[testenv:docs]
deps = sphinx
changedir = docs
commands=
sphinx-build -W -b html . _build/html
[testenv:flake8]
basepython = python3
deps = flake8==2.4.1
commands=
flake8 {toxinidir}/rosetta