Skip to content

Commit 4c64d5b

Browse files
committed
Replace nose by pytest
1 parent 675e9f0 commit 4c64d5b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
*.pyc
22
.DS_Store
3+
__pycache__
34
/MANIFEST
45
/dist
56
/.tox
7+
/.cache
8+
/JSON_log_formatter.egg-info

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-e .
22

3-
tox==2.1.1
3+
tox==2.6.0

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
2-
envlist=py27,py33
2+
envlist=py27,py35
33

44
[testenv]
55
deps=
6-
nose
6+
pytest
77
ujson
88
simplejson
99
commands=
10-
nosetests tests.py
10+
pytest tests.py

0 commit comments

Comments
 (0)