From 2281ef94275ad4fca032fd666a620d79d4578be9 Mon Sep 17 00:00:00 2001 From: Marcel Nijenhof Date: Tue, 8 Sep 2020 17:19:47 +0200 Subject: [PATCH] Cleanup & correctie tests --- .drone.yml | 2 +- .gitignore | 2 ++ lmwsip/tests/__init__.py | 2 +- setup.py | 3 ++- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index d595c60..c5d046f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,7 +16,7 @@ steps: - name: Build package files commands: - - python3 setup.py sdist bdist_wheel + - python setup.py test - name: Versie toevoegen aan download environment: diff --git a/.gitignore b/.gitignore index 809aaa2..bbb2aa4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ build dist lmwsip_marceln.egg-info test/__pycache__ +lmwsip.egg-info +*.swp diff --git a/lmwsip/tests/__init__.py b/lmwsip/tests/__init__.py index ef3023e..fc77dc8 100755 --- a/lmwsip/tests/__init__.py +++ b/lmwsip/tests/__init__.py @@ -4,7 +4,7 @@ import sys import io import unittest import lmwsip -import stubSipServer +import lmwsip.tests.stubSipServer from lmwsip.run import run from datetime import datetime, timedelta diff --git a/setup.py b/setup.py index e9266fa..0e40fe1 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="lmwsip", # Replace with your own username - version="0.0.3", + version="0.0.4", author="Marcel Nijenhof", author_email="pip@pion.xs4all.nl", description="Interface for the lmw sip protocol", @@ -17,6 +17,7 @@ setuptools.setup( "Programming Language :: Python :: 3", "License :: TODO", "Operating System :: OS Independent", + "Topic :: Lmw sip interface" ], python_requires='>=3.6', )