assamtest

mocha-style tests for python
git clone https://git.ce9e.org/assamtest.git

commit
3710e2c94e0f086213bfa76bb87999719efa0abe
parent
e83a5c6cdeef87cf089eb121cb3570da5aeac8d4
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2019-02-09 16:59
fix python path in main

Diffstat

M assamtest/__main__.py 1 +
M setup.py 2 +-

2 files changed, 2 insertions, 1 deletions


diff --git a/assamtest/__main__.py b/assamtest/__main__.py

@@ -27,6 +27,7 @@ def parse_args():
   27    27 
   28    28 
   29    29 def main():
   -1    30 	sys.path.insert(0, '')
   30    31 	args = parse_args()
   31    32 	import_package(args.module)
   32    33 	sys.exit(run(stack[-1], SpecReporter()))

diff --git a/setup.py b/setup.py

@@ -2,7 +2,7 @@ from setuptools import setup
    2     2 
    3     3 setup(
    4     4 	name='assamtest',
    5    -1 	version='0.0.0',
   -1     5 	version='0.0.1',
    6     6 	description='mocha-style tests for python',
    7     7 	url='https://github.com/xi/assamtest',
    8     8 	author='Tobias Bengfort',