Skip to content
This repository has been archived by the owner on Mar 22, 2021. It is now read-only.

Commit

Permalink
WIP: add nosetesting support
Browse files Browse the repository at this point in the history
See Github Issue #34.

Signed-off-by: Erik Bernoth <erik.bernoth@gmail.com>
  • Loading branch information
erikbgithub committed May 13, 2013
1 parent ab7a91d commit aa3ad3f
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 668 deletions.
13 changes: 13 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[nosetests]
#should not be set to 1 until bug is fixed in nosetests project
verbosity=2
detailed-errors=1
#xml output for jenkins and the likes
with-xunit=1
#coverage with xml as well
with-xcoverage=1
#only cover the monk package and leave the rest of python alone
cover-package=monk_tf
debug=nose.loader
pdb=1
pdb-failures=1
35 changes: 22 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,34 @@
# 2 of the License, or (at your option) any later version.
#

from distutils.core import setup
from setuptools import setup

project = 'monk_tf'
src_path = 'src'
version = '0.1.1'
project = "monk_tf"
src_path = "src"
version = "0.1.1"

setup(
name=project,
version=version,
description = 'a test framework for embedded systems',
author = 'DResearch Fahrzeugelektronik GmbH',
author_email = 'project-monk@dresearch-fe.de',
url='https://github.com/DFE/MONK',
description = "a test framework for embedded systems",
author = "DResearch Fahrzeugelektronik GmbH",
author_email = "project-monk@dresearch-fe.de",
url="https://github.com/DFE/MONK",
packages=[project],
package_dir = { '' : src_path },
package_dir = { "" : src_path },
setup_requires = [
"nose >= 1.0"
],
install_requires = [
'pyserial ==2.5',
'pylibssh2 ==1.0.1'
"pyserial >=2.5",
"pylibssh2 >=1.0.1"
],provides = [
'{} ({})'.format(project, version)
]
"{} ({})".format(project, version)
],
tests_require = [
"nose >= 1.0",
"coverage",
"nosexcover"
],
test_suite = "nose.collector"
)
41 changes: 0 additions & 41 deletions test/test_all.py

This file was deleted.

260 changes: 0 additions & 260 deletions test/test_bcc.py

This file was deleted.

Loading

0 comments on commit aa3ad3f

Please sign in to comment.