Skip to content

Commit 181da2d

Browse files
committed
Use pytest instead of nose
1 parent dc9c3d0 commit 181da2d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
SYSTEM_PYTHON := $(shell which python2)
22
VENV := venv
33
PIP := pip
4-
NOSETESTS := nosetests
54

65
venv:
76
$(SYSTEM_PYTHON) -m virtualenv $(VENV)
@@ -14,8 +13,7 @@ install:
1413

1514
.PHONY: test
1615
test:
17-
$(NOSETESTS) tests
18-
16+
pytest tests
1917

2018
.PHONY: constraints.txt
2119
constraints.txt:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
extras_require={
1818
'test': [
19-
'nose',
19+
'pytest',
2020
'six',
2121
]
2222
},

0 commit comments

Comments
 (0)