Skip to content

Commit

Permalink
Fix tox config
Browse files Browse the repository at this point in the history
The current tox config does not work as the dependencies are out of sync
and doctest has troubles with xunit.

This fixes it so that tox works again and makes it easier for other
people to contribute.
  • Loading branch information
aucampia committed May 14, 2021
1 parent 8d592a2 commit 9197e7b
Showing 1 changed file with 6 additions and 16 deletions.
22 changes: 6 additions & 16 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,10 @@ setenv =
commands =
{envpython} setup.py clean --all
{envpython} setup.py build
{envpython} run_tests.py --with-xunit
{envpython} run_tests.py
deps =
nose
isodate
html5lib
pyparsing
bsddb3
six
SPARQLWrapper>=1.6.2
-r requirements.txt
-r requirements.dev.txt

[testenv:cover]
basepython =
Expand All @@ -25,12 +20,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
-r requirements.txt
-r requirements.dev.txt

0 comments on commit 9197e7b

Please sign in to comment.