-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (34 loc) · 828 Bytes
/
tox.ini
File metadata and controls
37 lines (34 loc) · 828 Bytes
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
[tox]
envlist = py36
[testenv]
usedevelop = true
passenv = *
setenv =
DJANGO_SETTINGS_MODULE=mysite.settings
PYTHONPATH={toxinidir}/tests
commands =
{posargs:py.test -vv}
deps =
Django==1.11.6
pytest==3.2.3
coverage==4.4.1
pytest-cov==2.5.1
pytest-django==3.1.2
[testenv:slides]
usedevelop = false
skip_install = true
commands =
darkslide {posargs:--embed} slides/slides.cfg --destination=slides/slides.html --theme=abyss
deps =
darkslide==4.0.1
watchdog==0.8.3
[testenv:watch]
usedevelop = false
skip_install = true
deps =
watchdog==0.8.3
whitelist_externals =
tox
commands =
tox -e slides -- {posargs:}
watchmedo shell-command --wait --drop --ignore-directories --ignore-patterns="*.html;*.git*;*.tox*" --recursive --command "tox -e slides -- {posargs:}" slides/