Cleanup & correctie tests
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Marcel Nijenhof
2020-09-08 17:19:47 +02:00
parent 1bfa73a0f7
commit 2281ef9427
4 changed files with 6 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ steps:
- name: Build package files - name: Build package files
commands: commands:
- python3 setup.py sdist bdist_wheel - python setup.py test
- name: Versie toevoegen aan download - name: Versie toevoegen aan download
environment: environment:

2
.gitignore vendored
View File

@@ -5,3 +5,5 @@ build
dist dist
lmwsip_marceln.egg-info lmwsip_marceln.egg-info
test/__pycache__ test/__pycache__
lmwsip.egg-info
*.swp

View File

@@ -4,7 +4,7 @@ import sys
import io import io
import unittest import unittest
import lmwsip import lmwsip
import stubSipServer import lmwsip.tests.stubSipServer
from lmwsip.run import run from lmwsip.run import run
from datetime import datetime, timedelta from datetime import datetime, timedelta

View File

@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="lmwsip", # Replace with your own username name="lmwsip", # Replace with your own username
version="0.0.3", version="0.0.4",
author="Marcel Nijenhof", author="Marcel Nijenhof",
author_email="pip@pion.xs4all.nl", author_email="pip@pion.xs4all.nl",
description="Interface for the lmw sip protocol", description="Interface for the lmw sip protocol",
@@ -17,6 +17,7 @@ setuptools.setup(
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: TODO", "License :: TODO",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Topic :: Lmw sip interface"
], ],
python_requires='>=3.6', python_requires='>=3.6',
) )