summaryrefslogtreecommitdiff
path: root/tox.ini
blob: b5b588fbb2a41c84e8767943847c6407b7c33138 (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
[tox]
envlist =
    py35,py36,py37,py38

[testenv]
setenv =
    BERKELEYDB_DIR = /usr
commands =
    {envpython} setup.py clean --all
    {envpython} setup.py build
    {envpython} run_tests.py --with-xunit
deps =
    nose
    isodate
    html5lib
    pyparsing
    bsddb3
    six
    SPARQLWrapper>=1.6.2

[testenv:cover]
basepython =
    python3.7
commands =
    {envpython} run_tests.py --where=./ \
                 --with-coverage --cover-html --cover-html-dir=./coverage \
                 --cover-package=rdflib --cover-inclusive
deps =
    coverage
    nose
    isodate
    html5lib
    pyparsing
    bsddb3
    six
    SPARQLWrapper>=1.6.2