Skip to content

Commit e54686a

Browse files
authored
Merge pull request #54 from mulkieran/master-pytest
Drop dependency on pytest
2 parents 0bbdd1f + 9281aad commit e54686a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

tox.ini

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@ envlist=lint,test,coverage
55
deps =
66
coverage
77
dbus-python
8-
pytest>=2.8
98
commands =
109
coverage --version
11-
coverage run --timid --branch -m pytest tests
10+
coverage run --timid --branch -m unittest discover tests
1211
coverage report -m --fail-under=100 --show-missing --include="{envsitepackagesdir}/dbus_python_client_gen/*"
1312
coverage html --include="{envsitepackagesdir}/dbus_python_client_gen/*"
1413

1514
[testenv:lint]
1615
deps =
1716
dbus-python
1817
pylint
19-
pytest>=2.8
2018
commands =
2119
./check.py check.py
2220
./check.py setup.py
@@ -26,6 +24,5 @@ commands =
2624
[testenv:test]
2725
deps =
2826
dbus-python
29-
pytest>=2.8
3027
commands =
31-
py.test tests
28+
python3 -m unittest discover tests

0 commit comments

Comments
 (0)