Skip to content

Commit

Permalink
fix travis test (#54)
Browse files Browse the repository at this point in the history
* remove pyc files

* add verbose for travis nosetests
  • Loading branch information
eric-haibin-lin authored May 27, 2017
1 parent 8652043 commit 4e2f40f
Show file tree
Hide file tree
Showing 15 changed files with 5 additions and 5 deletions.
Binary file removed python/mxnet/module/__init__.pyc
Binary file not shown.
Binary file removed python/mxnet/module/__pycache__/__init__.cpython-34.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed python/mxnet/module/base_module.pyc
Binary file not shown.
Binary file removed python/mxnet/module/bucketing_module.pyc
Binary file not shown.
Binary file removed python/mxnet/module/executor_group.pyc
Binary file not shown.
Binary file removed python/mxnet/module/module.pyc
Binary file not shown.
Binary file removed python/mxnet/module/python_module.pyc
Binary file not shown.
Binary file removed python/mxnet/module/sequential_module.pyc
Binary file not shown.
10 changes: 5 additions & 5 deletions tests/travis/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ if [ ${TASK} == "python_test" ]; then
python -m nose tests/python/doctest || exit -1
python3 -m nose tests/python/doctest || exit -1
else
nosetests tests/python/unittest || exit -1
nosetests3 tests/python/unittest || exit -1
nosetests3 tests/python/train || exit -1
nosetests tests/python/doctest || exit -1
nosetests3 tests/python/doctest || exit -1
nosetests -v tests/python/unittest || exit -1
nosetests3 -v tests/python/unittest || exit -1
nosetests3 -v tests/python/train || exit -1
nosetests -v tests/python/doctest || exit -1
nosetests3 -v tests/python/doctest || exit -1
fi
exit 0
fi
Expand Down

0 comments on commit 4e2f40f

Please sign in to comment.