Skip to content

Commit 4cdb33d

Browse files
committed
BF: we need nipype for core and pytest not nose for testing
1 parent 0393eb4 commit 4cdb33d

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ install:
3535
- git config --global user.name "Travis Almighty"
3636

3737
script:
38-
# - nosetests -s -v --with-doctest --doctest-tests --with-cov --cover-package . --logging-level=INFO tests
3938
- coverage run `which py.test` -s -v tests heuristics
4039

4140
after_success:

dev-requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
-r requirements.txt
2-
six
3-
nose
2+
pytest

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ def findsome(subdir, extensions):
3434
'core': [
3535
'nibabel',
3636
'pydicom',
37+
'nipype',
3738
],
3839
'tests': [
3940
'six',
40-
'nose',
41+
'pytest',
4142
],
4243
'monitor': [
4344
'inotify',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
envlist = py27,py33,py34,py35
33

44
[testenv]
5-
commands = nosetests -s -v {posargs} tests
5+
commands = python -m pytest -s -v {posargs} tests
66
deps = -r{toxinidir}/dev-requirements.txt

0 commit comments

Comments
 (0)